File tree 1 file changed +7
-8
lines changed
1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Release
2
2
on :
3
3
push :
4
4
tags :
5
- - ' v* '
5
+ - " v* "
6
6
workflow_dispatch :
7
7
8
8
jobs :
@@ -17,13 +17,12 @@ jobs:
17
17
18
18
steps :
19
19
- uses : actions/checkout@v4
20
-
20
+
21
21
- name : setup node
22
22
uses : actions/setup-node@v4
23
23
with :
24
24
node-version : lts/*
25
- cache : ' yarn'
26
-
25
+
27
26
- name : install Rust
28
27
uses : dtolnay/rust-toolchain@stable
29
28
with :
53
52
- name : Rust cache
54
53
uses : swatinem/rust-cache@v2
55
54
with :
56
- workspaces : ' ./src-tauri -> target'
55
+ workspaces : " ./src-tauri -> target"
57
56
58
57
- name : build in release mode
59
58
run : cargo tauri build
63
62
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
64
63
with :
65
64
tagName : ${{ github.ref_name }} # This only works if your workflow triggers on new tags.
66
- releaseName : ' RSQL v__VERSION__' # tauri-action replaces \_\_VERSION\_\_ with the app version.
67
- releaseBody : ' See the assets to download and install this version.'
65
+ releaseName : " RSQL v__VERSION__" # tauri-action replaces \_\_VERSION\_\_ with the app version.
66
+ releaseBody : " See the assets to download and install this version."
68
67
releaseDraft : true
69
- prerelease : false
68
+ prerelease : false
You can’t perform that action at this time.
0 commit comments