Update main.yml

This commit is contained in:
Youwen Wu 2024-03-13 12:57:15 -07:00 committed by GitHub
parent 4cfc2db653
commit 58e8e76160
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -9,14 +9,17 @@ jobs:
defaults:
run:
working-directory: ./client
permissions:
contents: write
strategy:
fail-fast: false
matrix:
platform: [windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
@ -28,18 +31,19 @@ jobs:
- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v3
with:
version: 8
- name: install frontend dependencies
run: pnpm install # change this to npm or pnpm depending on which one you use
run: pnpm install
- uses: tauri-apps/tauri-action@v0
- name: build and release tauri app
uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
projectPath: .
tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
releaseName: 'Jankboard 2 v__VERSION__'
releaseBody: 'See the assets to download this version and install.'