Skip to content

Commit 932a90e

Browse files
committed
fix: workflow file
1 parent b3d5b72 commit 932a90e

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Release
22
on:
33
push:
44
tags:
5-
- 'v*'
5+
- "v*"
66
workflow_dispatch:
77

88
jobs:
@@ -17,13 +17,12 @@ jobs:
1717

1818
steps:
1919
- uses: actions/checkout@v4
20-
20+
2121
- name: setup node
2222
uses: actions/setup-node@v4
2323
with:
2424
node-version: lts/*
25-
cache: 'yarn'
26-
25+
2726
- name: install Rust
2827
uses: dtolnay/rust-toolchain@stable
2928
with:
@@ -53,7 +52,7 @@ jobs:
5352
- name: Rust cache
5453
uses: swatinem/rust-cache@v2
5554
with:
56-
workspaces: './src-tauri -> target'
55+
workspaces: "./src-tauri -> target"
5756

5857
- name: build in release mode
5958
run: cargo tauri build
@@ -63,7 +62,7 @@ jobs:
6362
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6463
with:
6564
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."
6867
releaseDraft: true
69-
prerelease: false
68+
prerelease: false

0 commit comments

Comments
 (0)