diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 113d2f1..603f5b7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -100,9 +100,8 @@ jobs: - name: Archive artifact uses: actions/upload-artifact@v4 with: - name: result-${{ matrix.TARGET }} - path: | - ./artifacts + name: multirun-${{ matrix.TARGET }}-${{github.ref_name}}.tar.gz + path: ./artifacts/multirun-${{ matrix.TARGET }}-${{github.ref_name}}.tar.gz # deploys to github releases on tag deploy: @@ -113,38 +112,8 @@ jobs: - name: Download artifacts uses: actions/download-artifact@v4 with: - name: result-x86_64-linux-gnu - path: ./artifacts - - name: Download artifacts - uses: actions/download-artifact@v4 - with: - name: result-x86_64-linux-musl - path: ./artifacts - - name: Download artifacts - uses: actions/download-artifact@v4 - with: - name: result-aarch64-linux-gnu - path: ./artifacts - - name: Download artifacts - uses: actions/download-artifact@v4 - with: - name: result-aarch64-linux-musl - path: ./artifacts - - name: Download artifacts - uses: actions/download-artifact@v4 - with: - name: result-arm-linux-gnueabihf - path: ./artifacts - - name: Download artifacts - uses: actions/download-artifact@v4 - with: - name: result-arm-linux-musl - path: ./artifacts - - name: Download artifacts - uses: actions/download-artifact@v4 - with: - name: result-x86_64-apple-darwin - path: ./artifacts + pattern: "*.tar.gz" + merge-multiple: true - name: List run: find ./artifacts - name: Release