-
-
Notifications
You must be signed in to change notification settings - Fork 20
49 lines (41 loc) · 1.38 KB
/
tauri.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
name: Release desktop app
on:
push:
tags:
- "v.*"
workflow_dispatch:
jobs:
release:
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Node.js setup
uses: actions/setup-node@v4
- name: Install Rust (Stable)
run: curl https://sh.rustup.rs -sSf | sh -s -- -y
- uses: pnpm/action-setup@v4
name: Install pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
- name: Build the app
uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: "v.__VERSION__" # tauri-action replaces \_\_VERSION\_\_ with the app version
releaseName: "@gun-vue v.__VERSION__"
releaseBody: "See the assets to download this version and install on your desktop platform."
releaseDraft: true
prerelease: false
projectPath: ./desktop
tauriScript: pnpm tauri