-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (43 loc) · 1.22 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: "Publish to Windows"
# This will trigger the action manually.
on:
push:
branches:
- main
jobs:
publish-tauri:
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
- name: setup node
uses: actions/setup-node@v4
with:
node-version: 20
- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
- uses: pnpm/action-setup@v3
with:
version: 8
- name: install frontend dependencies
run: pnpm install
- name: build and release tauri app
uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
projectPath: ./client
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."
releaseDraft: true
prerelease: false
tauriScript: "pnpm tauri"