diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index e3efe1d..1e43ed4 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -60,6 +60,6 @@ jobs: if: inputs.upload-artifacts uses: actions/upload-artifact@v4 with: - name: binaries + name: binary-${{ matrix.platform }} path: ./dist/* retention-days: ${{ inputs.artifact-retention-days }} diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml index dba2376..e7d115d 100644 --- a/.github/workflows/release-binaries.yml +++ b/.github/workflows/release-binaries.yml @@ -23,10 +23,12 @@ jobs: - name: Download binaries from earlier jobs uses: actions/download-artifact@v4 with: - name: binaries + pattern: binary-* path: dist/ + merge-multiple: true - name: Upload binaries to release + uses: "ncipollo/release-action@v1" with: token: "${{ secrets.GITHUB_TOKEN }}" diff --git a/.github/workflows/release-container-image.yml b/.github/workflows/release-container-image.yml index 3690459..9af6c30 100644 --- a/.github/workflows/release-container-image.yml +++ b/.github/workflows/release-container-image.yml @@ -85,7 +85,7 @@ jobs: - name: Download binaries from earlier jobs uses: actions/download-artifact@v4 with: - name: binaries + pattern: binary-${{ matrix.platform }} path: dist/ - name: Login to Github Packages