forked from YuehaiTeam/cocogoat-client
-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (45 loc) · 1.45 KB
/
build-test.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
name: Build Test
on: [ push, pull_request ]
jobs:
build:
runs-on: windows-latest
name: Build
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
architecture: 'x64'
- uses: szenius/[email protected]
with:
timezoneLinux: "Asia/Shanghai"
timezoneMacos: "Asia/Shanghai"
timezoneWindows: "China Standard Time"
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Replace registry
run: (Get-content yarn.lock) | Foreach-Object {$_ -replace "registry.nlark.com", "r.cnpmjs.org"} | Set-Content yarn.lock
- name: Install dependencies
run: yarn --ignore-scripts
- name: Build native modules
run: npm rebuild --force
- name: Build
run: yarn electron:build
- name: Upload package
uses: actions/upload-artifact@v2
with:
name: cocogoat
path: dist/*.gz
- name: Upload unpacked
uses: actions/upload-artifact@v2
with:
name: cocogoat-unpacked
path: dist_electron/win-unpacked/