-
Notifications
You must be signed in to change notification settings - Fork 52
93 lines (78 loc) · 2.19 KB
/
main.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
# Workflow's name
name: Build Electron App For Win/Mac
# Workflow's trigger
on:
push:
tags:
- "v*.*.*"
# Workflow's jobs
jobs:
# job's id
release:
# job's name
name: build and release electron app
# the type of machine to run the job on
runs-on: ${{ matrix.os }}
# create a build matrix for jobs
strategy:
fail-fast: false
matrix:
os: [windows-2019, macos-10.15,ubuntu-16.04]
# create steps
steps:
# step1: check out repository
- name: Check out git repository
uses: actions/checkout@v2
# step2: install node env
- name: Install Node.js
uses: actions/setup-node@v2-beta
# step3: npm install
- name: npm install
run: |
npm install
# step4: build app for mac/win
- name: build windows app
if: matrix.os == 'windows-2019'
run: |
npm run build
env:
GH_TOKEN: ${{ secrets.ACCESS_TOKEN }}
- name: build mac app
if: matrix.os == 'macos-10.15'
run: |
npm run build
env:
GH_TOKEN: ${{ secrets.ACCESS_TOKEN }}
- name: build linux app
if: matrix.os == 'ubuntu-16.04'
run: |
npm run build
env:
GH_TOKEN: ${{ secrets.ACCESS_TOKEN }}
# step5: cleanup artifacts in dist_electron
- name: cleanup artifacts for windows
if: matrix.os == 'windows-2019'
run: |
npx rimraf "build/!(*.exe)"
- name: cleanup artifacts for macosZ
if: matrix.os == 'macos-10.15'
run: |
npx rimraf "build/!(*.dmg)"
- name: cleanup artifacts for ubuntu
if: matrix.os == 'ubuntu-16.04'
run: |
npx rimraf "build/!(*.AppImage)"
# step6: upload artifacts
- name: upload artifacts
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.os }}
path: build
# step7: create release
- name: release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: "build/**"
env:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}