We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f546965 commit 89a83d7Copy full SHA for 89a83d7
.github/workflows/build-and-publish.yml
@@ -9,7 +9,15 @@ jobs:
9
strategy:
10
fail-fast: false
11
matrix:
12
- platform: [ubuntu-22.04, windows-latest]
+ include:
13
+ - platform: 'macos-latest' # for Arm based macs (M1 and above).
14
+ args: '--target aarch64-apple-darwin'
15
+ - platform: 'macos-latest' # for Intel based macs.
16
+ args: '--target x86_64-apple-darwin'
17
+ - platform: 'ubuntu-22.04' # for Tauri v1 you could replace this with ubuntu-20.04.
18
+ args: ''
19
+ - platform: 'windows-latest'
20
21
22
runs-on: ${{ matrix.platform }}
23
steps:
0 commit comments