Skip to content

Commit ca69d0c

Browse files
committed
Build workflow
1 parent 5b72065 commit ca69d0c

File tree

1 file changed

+62
-0
lines changed

1 file changed

+62
-0
lines changed
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
name: "publish"
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
publish-tauri:
10+
permissions:
11+
contents: write
12+
strategy:
13+
fail-fast: false
14+
matrix:
15+
include:
16+
- platform: "macos-latest" # for Arm based macs (M1 and above).
17+
args: "--target aarch64-apple-darwin"
18+
- platform: "macos-latest" # for Intel based macs.
19+
args: "--target x86_64-apple-darwin"
20+
# - platform: "ubuntu-22.04" # for Tauri v1 you could replace this with ubuntu-20.04.
21+
- platform: "ubuntu-20.04"
22+
args: ""
23+
- platform: "windows-latest"
24+
args: ""
25+
26+
runs-on: ${{ matrix.platform }}
27+
steps:
28+
- uses: actions/checkout@v4
29+
30+
- name: setup node
31+
uses: actions/setup-node@v4
32+
with:
33+
node-version: lts/*
34+
35+
- name: install Rust stable
36+
uses: dtolnay/rust-toolchain@stable
37+
with:
38+
# Those targets are only used on macos runners so it's in an `if` to slightly speed up windows and linux builds.
39+
targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}
40+
41+
- name: install dependencies (ubuntu only)
42+
# if: matrix.platform == 'ubuntu-22.04' # This must match the platform value defined above.
43+
if: matrix.platform == 'ubuntu-20.04' # This must match the platform value defined above.
44+
run: |
45+
sudo apt-get update
46+
sudo apt-get install -y libwebkit2gtk-4.0-dev libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
47+
# webkitgtk 4.0 is for Tauri v1 - webkitgtk 4.1 is for Tauri v2.
48+
# You can remove the one that doesn't apply to your app to speed up the workflow a bit.
49+
50+
- name: install frontend dependencies
51+
run: yarn install # change this to npm, pnpm or bun depending on which one you use.
52+
53+
- uses: tauri-apps/tauri-action@v0
54+
env:
55+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
56+
with:
57+
tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version.
58+
releaseName: "App v__VERSION__"
59+
releaseBody: "See the assets to download this version and install."
60+
releaseDraft: true
61+
prerelease: false
62+
args: ${{ matrix.args }}

0 commit comments

Comments
 (0)