From 932a90e6d470d8d8ed3e3b202afe888bcb97d45f Mon Sep 17 00:00:00 2001 From: Daniel Boros Date: Mon, 9 Dec 2024 10:01:19 +0100 Subject: [PATCH] fix: workflow file --- .github/workflows/release.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9a4bfc7..89073a2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,7 +2,7 @@ name: Release on: push: tags: - - 'v*' + - "v*" workflow_dispatch: jobs: @@ -17,13 +17,12 @@ jobs: steps: - uses: actions/checkout@v4 - + - name: setup node uses: actions/setup-node@v4 with: node-version: lts/* - cache: 'yarn' - + - name: install Rust uses: dtolnay/rust-toolchain@stable with: @@ -53,7 +52,7 @@ jobs: - name: Rust cache uses: swatinem/rust-cache@v2 with: - workspaces: './src-tauri -> target' + workspaces: "./src-tauri -> target" - name: build in release mode run: cargo tauri build @@ -63,7 +62,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: tagName: ${{ github.ref_name }} # This only works if your workflow triggers on new tags. - releaseName: 'RSQL v__VERSION__' # tauri-action replaces \_\_VERSION\_\_ with the app version. - releaseBody: 'See the assets to download and install this version.' + releaseName: "RSQL v__VERSION__" # tauri-action replaces \_\_VERSION\_\_ with the app version. + releaseBody: "See the assets to download and install this version." releaseDraft: true - prerelease: false \ No newline at end of file + prerelease: false