Skip to content

Commit

Permalink
fix: update artifact name to correct arch for macOS runner image
Browse files Browse the repository at this point in the history
For `macos-latest` runner image, the default architecture is `arm64`,
refer to the below link for more details:
- https://github.com/actions/runner-images/blob/macos-14/20250218.801/README.md#available-images
- https://docs.github.com/en/actions/using-github-hosted-runners/using-github-hosted-runners/about-github-hosted-runners#standard-github-hosted-runners-for-public-repositories

This change updates the artifact name to `darwin-arm64` to reflect the correct architecture.
  • Loading branch information
Pengxn authored and huiyifyj committed Feb 20, 2025
1 parent 75d8582 commit 3fc2cfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ jobs:
- name: Publish Build Artifacts
uses: actions/upload-artifact@v4
with:
name: darwin-amd64
name: darwin-arm64
path: build/

0 comments on commit 3fc2cfc

Please sign in to comment.