-
-
Notifications
You must be signed in to change notification settings - Fork 45
76 lines (63 loc) · 1.89 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
name: Build/release
on: push
jobs:
release:
runs-on: ubuntu-latest
env:
# https://github.com/actions/setup-node/issues/531
SKIP_YARN_COREPACK_CHECK: true
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install pkg
run: npm i -g pkg
- name: Frontend yarn
run: cd ezshare-frontend && yarn
- name: yarn
run: yarn
- name: Build
run: yarn build
- name: Patch
run: patch -p1 < standalone.patch
- name: Run pkg
run: |
mkdir win macos linux
mkdir win/ezshare linux/ezshare
mv node_modules/clipboardy/fallbacks/windows/clipboard_x86_64.exe win/ezshare/clipboard.exe
mv node_modules/clipboardy/fallbacks/linux/xsel linux/ezshare/clipboard
rm -r node_modules/clipboardy/fallbacks
pkg .
mv ezshare-win.exe win/ezshare/ezshare.exe
mv ezshare-linux linux/ezshare/ezshare
mv ezshare-macos macos/ezshare
cd win
zip -r ../ezshare-win.zip ezshare
cd ..
cd macos
zip ../ezshare-macos.zip ezshare
cd ..
cd linux
zip -r ../ezshare-linux.zip ezshare
- name: (Windows) 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 }}