You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: .github/workflows/gh-release.yml
+16-23
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,8 @@ name: 'publish'
3
3
on:
4
4
workflow_dispatch:
5
5
6
+
# This workflow will trigger on each push to the `release` branch to create or update a GitHub release, build your app, and upload the artifacts to the release.
7
+
6
8
jobs:
7
9
publish-tauri:
8
10
permissions:
@@ -11,12 +13,12 @@ jobs:
11
13
fail-fast: false
12
14
matrix:
13
15
include:
14
-
- platform: 'macos-latest'# for Arm based macs (M1 and above).
15
-
args: '--target aarch64-apple-darwin'
16
-
- platform: 'macos-latest'# for Intel based macs.
17
-
args: '--target x86_64-apple-darwin'
18
-
- platform: 'ubuntu-22.04'# for Tauri v1 you could replace this with ubuntu-20.04.
19
-
args: ''
16
+
#- platform: 'macos-latest' # for Arm based macs (M1 and above).
17
+
# args: '--target aarch64-apple-darwin'
18
+
#- platform: 'macos-latest' # for Intel based macs.
19
+
# args: '--target x86_64-apple-darwin'
20
+
#- platform: 'ubuntu-22.04' # for Tauri v1 you could replace this with ubuntu-20.04.
21
+
# args: ''
20
22
- platform: 'windows-latest'
21
23
args: ''
22
24
@@ -32,42 +34,33 @@ jobs:
32
34
- name: install Rust stable
33
35
uses: dtolnay/rust-toolchain@stable
34
36
with:
37
+
# Those targets are only used on macos runners so it's in an `if` to slightly speed up windows and linux builds.
0 commit comments