-
-
Notifications
You must be signed in to change notification settings - Fork 45
58 lines (52 loc) · 1.4 KB
/
build.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
name: Build/release
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
env:
# https://github.com/actions/setup-node/issues/531
SKIP_YARN_COREPACK_CHECK: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- run: yarn --immutable
- run: cd frontend && yarn --immutable
- run: yarn tsc
- run: yarn lint
build:
runs-on: ubuntu-latest
env:
# https://github.com/actions/setup-node/issues/531
SKIP_YARN_COREPACK_CHECK: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- run: yarn --immutable
- run: cd frontend && yarn --immutable
- run: yarn build
- run: yarn build:frontend
- run: patch -p1 < standalone.patch
- run: ./pkg.sh
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: Binaries
path: |
ezshare-win.zip
ezshare-macos.zip
ezshare-linux.zip
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
ezshare-win.zip
ezshare-macos.zip
ezshare-linux.zip
draft: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}