Skip to content

Commit 9244e3d

Browse files
committed
Add Tauri deployment action
1 parent 51e3e21 commit 9244e3d

File tree

2 files changed

+79
-0
lines changed

2 files changed

+79
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Deploy Tauri
2+
description: Build and deploy native Tauri applications
3+
runs:
4+
using: composite
5+
steps:
6+
- name: Checkout
7+
uses: actions/checkout@v4
8+
- name: Setup pnpm
9+
uses: pnpm/action-setup@v4
10+
with:
11+
run_install: false
12+
- name: Setup Node.js
13+
uses: actions/setup-node@v4
14+
with:
15+
node-version: 18
16+
cache: pnpm
17+
- name: Install dependencies
18+
shell: bash
19+
run: pnpm install

.github/workflows/deploy-tauri.yml

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

0 commit comments

Comments
 (0)