Skip to content

Commit

Permalink
ci(build): fix macos using wrong extension
Browse files Browse the repository at this point in the history
  • Loading branch information
DevYukine committed Nov 19, 2023
1 parent 2795675 commit 4d8650d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,11 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
target: [x86_64-apple-darwin, aarch64-apple-darwin]
target:
- build_target: x86_64-apple-darwin
arch: x64
- build_target: aarch64-apple-darwin
arch: aarch64
steps:
- name: Checkout Source code
uses: actions/checkout@v4
Expand All @@ -115,5 +119,5 @@ jobs:
- name: Upload Action Artifact
uses: actions/upload-artifact@v2
with:
name: rustfoil_${{ runner.OS }}_${{ matrix.target.arch }}.exe
name: rustfoil_${{ runner.OS }}_${{ matrix.target.arch }}
path: rustfoil-cli/target/${{ matrix.target.build_target }}/release/rustfoil.exe

0 comments on commit 4d8650d

Please sign in to comment.