-
Notifications
You must be signed in to change notification settings - Fork 0
102 lines (77 loc) · 2.21 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
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: Build & Release
run: pnpm pbuild
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
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 Stable Toolchain
run: rustup toolchain add stable
- 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 & Upload to AHQ Store
uses: ahqstore/upload-app@v0.1.0
with:
release: ${{ needs.create_release.outputs.r_id }}
upload: true
env:
RELEASE_ID: ${{ needs.create_release.outputs.r_id }}
GH_TOKEN: ${{ secrets.PAT_G_H }}