-
-
Notifications
You must be signed in to change notification settings - Fork 45
63 lines (52 loc) · 1.57 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
name: Build/release
on: push
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v1
with:
node-version: 12
- name: Install pkg
run: npm i -g pkg
- name: Frontend yarn
run: cd ezshare-frontend && yarn
- name: yarn
run: yarn
- name: Build
run: npm run 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: 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 }}