Skip to content

Commit

Permalink
fix: update action
Browse files Browse the repository at this point in the history
  • Loading branch information
ImpossibleReality committed Jan 28, 2024
1 parent c9ff22c commit 6550f80
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ jobs:
- name: install frontend dependencies (except windows)
if: matrix.platform != 'windows-latest'
run: bun install
run: cd desktop && bun install

- name: install frontend dependences (Windows only)
if: matrix.platform == 'windows-latest'
run: npm install
run: cd desktop && bun install

- name: build tauri release (except windows)
if: matrix.platform != 'windows-latest'
Expand All @@ -53,7 +53,8 @@ jobs:
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_SECRET_KEY }}
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_SECRET_PASSWORD }}
with:
tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
projectPath: ./desktop
tagName: v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
releaseName: 'Siffra v__VERSION__'
releaseBody: 'See the assets to download this version and install.'
releaseDraft: true
Expand Down

0 comments on commit 6550f80

Please sign in to comment.