From 0c154b2ed7f059218d181e7615cfb062d5a9f773 Mon Sep 17 00:00:00 2001 From: Argelbargel Date: Thu, 28 Mar 2024 13:27:03 +0100 Subject: [PATCH] Fix Pipelines --- .github/workflows/compile.yml | 2 +- .github/workflows/release-binaries.yml | 4 +++- .github/workflows/release-container-image.yml | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) 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