Skip to content

Commit

Permalink
Fix Pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
Argelbargel committed Mar 28, 2024
1 parent 848527d commit 0c154b2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
4 changes: 3 additions & 1 deletion .github/workflows/release-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-container-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0c154b2

Please sign in to comment.