Skip to content

Commit

Permalink
fix(mac x86 plateform)
Browse files Browse the repository at this point in the history
  • Loading branch information
vollate committed Jun 4, 2024
1 parent 79b063e commit c8b8b1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
settings:
- platform: 'macos-latest' # for Arm based macs (M1 and above).
args: '--target aarch64-apple-darwin'
- platform: 'macos-latest' # for Intel based macs.
- platform: 'macos-13' # for Intel based macs.
args: '--target x86_64-apple-darwin'
- platform: 'ubuntu-22.04' # for Tauri v1 you could replace this with ubuntu-20.04.
args: ''
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
echo "PROTOC=$protocPath" >> $Env:GITHUB_ENV
- name: install dependencies (mac only)
if: matrix.settings.platform == 'macos-latest' || matrix.settings.platform == 'aarch64-apple-darwin,x86_64-apple-darwin'
if: matrix.settings.platform == 'macos-latest'|| matrix.settings.platform == 'macos-13' || matrix.settings.platform == 'aarch64-apple-darwin,x86_64-apple-darwin'
run: |
brew install protobuf
Expand Down

0 comments on commit c8b8b1b

Please sign in to comment.