-
Notifications
You must be signed in to change notification settings - Fork 50
53 lines (53 loc) · 1.61 KB
/
build-release.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
name: Build Production
on:
push:
tags:
- '*'
jobs:
build:
env:
BUILD_TYPE: REL
SENTRY_URL: ${{ secrets.SENTRY_URL }}
SENTRY_KEY: ${{ secrets.SENTRY_KEY }}
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)"
- name: Get yarn cache
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/