-
Notifications
You must be signed in to change notification settings - Fork 0
114 lines (87 loc) · 2.57 KB
/
publish.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
name: Publish App
permissions: write-all
on:
push:
jobs:
create_release:
name: Create a release
runs-on: ubuntu-latest
outputs:
r_id: ${{ steps.r_id.outputs.r_id }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Nodejs
uses: actions/setup-node@v4
- name: Install PNPM
run: npm i -g pnpm
- name: Install Utils Deps
run: pnpm install
working-directory: utils
- name: Create Release
id: r_id
run: node release >> "$GITHUB_OUTPUT"
working-directory: utils
env:
REPO: ${{ github.repository }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
build:
needs: [create_release]
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
name: "Build app on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Nodejs
uses: actions/setup-node@v4
- name: Install PNPM
run: npm i -g pnpm
- name: Install Deps
run: pnpm install
- name: Install dependencies (ubuntu only)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libayatana-appindicator3-dev librsvg2-dev
- name: Rust setup
uses: dtolnay/rust-toolchain@stable
- name: Rust cache
uses: swatinem/rust-cache@v2
with:
workspaces: "./src-tauri -> target"
- name: Build & Publish
uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
releaseId: ${{ needs.create_release.outputs.r_id }}
push_to_ahqstore:
needs: [create_release, build]
name: Generate AHQ Store Binary
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup NodeJS
uses: actions/setup-node@v4
- name: Install Utils Deps
run: npm i -g pnpm; pnpm install
working-directory: utils
- name: Create Release
id: r_id
run: node undraft
working-directory: utils
env:
R_ID: ${{ needs.create_release.outputs.r_id }}
REPO: ${{ github.repository }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Build
uses: ahqstore/[email protected]
with:
release: ${{ needs.create_release.outputs.r_id }}
upload: true
env:
GH_TOKEN: ${{ secrets.PAT_G_H }}