File tree Expand file tree Collapse file tree 1 file changed +3
-11
lines changed Expand file tree Collapse file tree 1 file changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -12,27 +12,20 @@ jobs:
12
12
strategy :
13
13
fail-fast : false
14
14
matrix :
15
- platform : [macos-latest, windows-latest] # Ubuntu-20.04 has been removed
15
+ platform : [macos-latest, windows-latest]
16
16
runs-on : ${{ matrix.platform }}
17
17
18
18
steps :
19
19
- name : Checkout repository
20
20
uses : actions/checkout@v3
21
21
22
- - name : Install dependencies (ubuntu only)
23
- if : matrix.platform == 'ubuntu-20.04'
24
- # You can remove libayatana-appindicator3-dev if you don't use the system tray feature.
25
- run : |
26
- sudo apt-get update
27
- sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libayatana-appindicator3-dev librsvg2-dev
28
-
29
22
- name : Rust setup
30
23
uses : dtolnay/rust-toolchain@stable
31
24
32
25
- name : Rust cache
33
26
uses : swatinem/rust-cache@v2
34
27
with :
35
- workspaces : " ./src-tauri -> target"
28
+ workspaces : " target"
36
29
37
30
- name : Sync node version and setup cache
38
31
uses : actions/setup-node@v3
@@ -46,12 +39,11 @@ jobs:
46
39
47
40
- name : Build the app
48
41
uses : tauri-apps/tauri-action@v0
49
-
50
42
env :
51
43
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
52
44
with :
53
45
tagName : ${{ github.ref_name }} # This only works if your workflow triggers on new tags.
54
- releaseName : " App Name v__VERSION__" # tauri-action replaces \_\_VERSION\_\_ with the app version.
46
+ releaseName : " App Name v__VERSION__" # tauri-action replaces __VERSION__ with the app version.
55
47
releaseBody : " See the assets to download and install this version."
56
48
releaseDraft : true
57
49
prerelease : false
You can’t perform that action at this time.
0 commit comments