|
24 | 24 | jobs: |
25 | 25 | build: |
26 | 26 | uses: ./.github/workflows/binaries.yaml |
| 27 | + with: |
| 28 | + build_binaries: true |
27 | 29 | upload-asset: |
28 | 30 | needs: build |
29 | 31 | runs-on: ubuntu-latest |
30 | 32 | steps: |
31 | 33 | - name: Download artifact |
32 | 34 | uses: actions/download-artifact@v4 |
33 | 35 | with: |
34 | | - name: visus-linux-amd64.zip |
| 36 | + name: visus-linux-amd64 |
35 | 37 | - name: Upload asset |
36 | 38 | |
37 | 39 | env: |
38 | 40 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
39 | 41 | with: |
40 | 42 | upload_url: ${{ github.event.release.upload_url }} |
41 | | - asset_path: visus-linux-amd64.zip |
42 | | - asset_name: visus-${{ github.event.release.tag_name }}-linux-amd64.zip |
| 43 | + asset_path: visus-linux-amd64.tgz |
| 44 | + asset_name: visus-${{ github.event.release.tag_name }}-linux-amd64.tgz |
43 | 45 | asset_content_type: binary/octet-stream |
44 | 46 |
|
45 | 47 | - name: Download artifact |
46 | 48 | uses: actions/download-artifact@v4 |
47 | 49 | with: |
48 | | - name: visus-linux-arm64.zip |
| 50 | + name: visus-linux-arm64 |
49 | 51 | - name: Upload asset |
50 | 52 | |
51 | 53 | env: |
52 | 54 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
53 | 55 | with: |
54 | 56 | upload_url: ${{ github.event.release.upload_url }} |
55 | | - asset_path: visus-linux-arm64.zip |
56 | | - asset_name: visus-${{ github.event.release.tag_name }}-linux-arm64.zip |
| 57 | + asset_path: visus-linux-arm64.tgz |
| 58 | + asset_name: visus-${{ github.event.release.tag_name }}-linux-arm64.tgz |
57 | 59 | asset_content_type: binary/octet-stream |
58 | 60 |
|
59 | 61 | - name: Download artifact |
60 | 62 | uses: actions/download-artifact@v4 |
61 | 63 | with: |
62 | | - name: visus-darwin-arm64.zip |
| 64 | + name: visus-darwin-arm64 |
63 | 65 | - name: Upload asset |
64 | 66 | |
65 | 67 | env: |
66 | 68 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
67 | 69 | with: |
68 | 70 | upload_url: ${{ github.event.release.upload_url }} |
69 | | - asset_path: visus-darwin-arm64.zip |
70 | | - asset_name: visus-${{ github.event.release.tag_name }}-darwin-arm64.zip |
| 71 | + asset_path: visus-darwin-arm64.tgz |
| 72 | + asset_name: visus-${{ github.event.release.tag_name }}-darwin-arm64.tgz |
71 | 73 | asset_content_type: binary/octet-stream |
0 commit comments