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: defaults:
run: run:
working-directory: ./client working-directory: ./client
permissions: permissions:
contents: write contents: write
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
platform: [windows-latest] platform: [windows-latest]
runs-on: ${{ matrix.platform }} runs-on: ${{ matrix.platform }}
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@ -28,18 +31,19 @@ jobs:
- name: install Rust stable - name: install Rust stable
uses: dtolnay/rust-toolchain@stable uses: dtolnay/rust-toolchain@stable
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v3 - uses: pnpm/action-setup@v3
with: with:
version: 8 version: 8
- name: install frontend dependencies - 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: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with: with:
projectPath: .
tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
releaseName: 'Jankboard 2 v__VERSION__' releaseName: 'Jankboard 2 v__VERSION__'
releaseBody: 'See the assets to download this version and install.' releaseBody: 'See the assets to download this version and install.'