Skip to content

Commit

Permalink
Merge pull request #39 from fpco/arm64-ci-artifacts
Browse files Browse the repository at this point in the history
Github actions: Fix artifacts name
  • Loading branch information
psibi authored Dec 10, 2024
2 parents 048807b + 9ea0ffe commit e508bae
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,15 @@ jobs:
cp target/aarch64-unknown-linux-musl/release/amber artifacts/amber-aarch64-unknown-linux-musl
- uses: actions/upload-artifact@v4
with:
name: binaries
name: binaries-linux
path: artifacts/*
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: artifacts/amber-x86_64-unknown-linux-musl
files: |
artifacts/amber-x86_64-unknown-linux-musl
artifacts/amber-aarch64-unknown-linux-musl
generate_release_notes: true

macos-binary:
Expand All @@ -109,7 +111,7 @@ jobs:
cp target/release/amber artifacts/amber-x86_64-apple-darwin
- uses: actions/upload-artifact@v4
with:
name: binaries
name: binaries-macos
path: artifacts/*
- name: Release
uses: softprops/action-gh-release@v2
Expand Down Expand Up @@ -138,7 +140,7 @@ jobs:
cp target/release/amber.exe artifacts/amber-x86_64-pc-windows-gnu.exe
- uses: actions/upload-artifact@v4
with:
name: binaries
name: binaries-windows
path: artifacts/*
- name: Release
uses: softprops/action-gh-release@v2
Expand Down

0 comments on commit e508bae

Please sign in to comment.