Skip to content

Commit

Permalink
build: fix Intel mac release condition
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdecaf authored Feb 12, 2024
1 parent 064bc09 commit 7b65b68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
asset_content_type: application/octet-stream

- name: Upload macOS Intel Binary
if: runner.os == 'macOS' && runner.arch == 'X86'
if: runner.os == 'macOS' && !contains(runner.arch, 'ARM')
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 7b65b68

Please sign in to comment.