-
Notifications
You must be signed in to change notification settings - Fork 2
63 lines (53 loc) · 1.57 KB
/
release.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
55
56
57
58
59
60
61
62
63
name: "publish"
on:
push:
branches:
- release
jobs:
publish-tauri:
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: setup node
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: '1.23'
- name: Checkout code
uses: actions/checkout@v3
- name: Build Go FFI
run: make build
- name: install Rust stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: install webkit2gtk (ubuntu only)
if: matrix.platform == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y webkit2gtk-4.0
- name: install dependencies
run: |
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
cargo install rsw
npm ci --force
- name: generate osx cargo config
if: matrix.platform == 'macos-latest'
run: make init_osx_cfg
- name: tauri release
uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
releaseName: "App v__VERSION__"
body: "See the assets to download this version and install."
draft: false
prerelease: false