forked from parachvte/Luban
-
Notifications
You must be signed in to change notification settings - Fork 0
178 lines (142 loc) · 5.99 KB
/
build-on-create-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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
name: Build on Release created
on:
release:
types:
- created
jobs:
build-windows:
name: Build Windows Packages
runs-on: windows-2022
steps:
- name: Prepare VC++ Runtime
run: choco install -y vcredist2017
- name: Checkout Code
uses: actions/checkout@v4
with:
token: ${{ secrets.SACP_TOKEN }}
submodules: 'true'
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Use Node.js 16
uses: actions/setup-node@v3
with:
node-version: 16
- run: npm install -g npm@^9
- run: npm install
- run: npm run build
# ----------------------------------------------------------------
# Build Windows x64
# ----------------------------------------------------------------
- name: Build Windows x64 Binaries
run: npm run build:win-x64
- name: Release on Github
uses: softprops/action-gh-release@v1
with:
files: |
./output/*.exe
./output/latest.yml
build-macos:
name: Build macOS Packages
# macos-11.7
runs-on: macos-11
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
token: ${{ secrets.SACP_TOKEN }}
submodules: 'true'
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Use Node.js 16
uses: actions/setup-node@v3
with:
node-version: 16
# install setuptools to reintroduce distutils missing in Python 3.12
# https://github.com/nodejs/node-gyp/issues/2869
- run: pip install setuptools
- run: npm install -g npm@^9
- run: npm install
- run: npm run build
# ----------------------------------------------------------------
# Build macOS x64 & arm64
# ----------------------------------------------------------------
- name: Build macOS Binaries
run: npm run build:mac
env:
CSC_LINK: ${{ secrets.CSC_LINK_MACOS }}
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD_MACOS }}
APPLEID: ${{ secrets.APPLEID }}
APPLEIDPASS: ${{ secrets.APPLEIDPASS }}
- name: Release on Github
uses: softprops/action-gh-release@v1
with:
files: |
./output/*.zip
./output/*.dmg
./output/latest-mac.yml
- name: Init OSS
if: github.repository == 'Snapmaker/Luban'
uses: yizhoumo/setup-ossutil@v1
with:
ossutil-version: '1.7.0'
endpoint: ${{ secrets.OSS_ENDPOINT }}
access-key-id: ${{ secrets.OSS_ACCESS_KEY_ID }}
access-key-secret: ${{ secrets.OSS_ACCESS_KEY_SECRET }}
- name: Upload Release macOS Installer OSS
if: github.repository == 'Snapmaker/Luban'
run: |
ossutil cp -f ./output/ ${{secrets.OSS_UPDATE_PATH}}/ --include "*.dmg" -r
ossutil cp -f ./output/ ${{secrets.OSS_UPDATE_PATH}}/ --include "*.zip" -r
build-linux:
name: Build Linux Packages
# Ubuntu 20.04: ubuntu-latest or ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
token: ${{ secrets.SACP_TOKEN }}
submodules: 'true'
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Use Node.js 16
uses: actions/setup-node@v3
with:
node-version: 16
- run: npm install -g npm@^9
- run: npm install
- run: npm run build
# ----------------------------------------------------------------
# Build Linux x64
# ----------------------------------------------------------------
- name: Build Linux x64 Binaries
run: npm run build:linux-x64
- run: |
PRODUCT_NAME="Snapmaker Luban"
PACKAGE_NAME="snapmaker-luban"
PACKAGE_VERSION=`node -e "console.log(require('./src/package.json').version)"`
RELEASE=${PACKAGE_NAME}-${PACKAGE_VERSION}
ln -sf ./output/linux-unpacked "${RELEASE}-linux-x64"
tar zcfh "./output/${RELEASE}-linux-x64.tar.gz" "${RELEASE}-linux-x64"
rm -f "${RELEASE}-linux-x64"
- name: Release on Github
uses: softprops/action-gh-release@v1
with:
files: |
./output/*.deb
./output/*.rpm
./output/*.tar.gz
- name: Init OSS
if: github.repository == 'Snapmaker/Luban'
uses: yizhoumo/setup-ossutil@v1
with:
ossutil-version: '1.7.0'
endpoint: ${{ secrets.OSS_ENDPOINT }}
access-key-id: ${{ secrets.OSS_ACCESS_KEY_ID }}
access-key-secret: ${{ secrets.OSS_ACCESS_KEY_SECRET }}
- name: Upload Release linux Installer To OSS
if: github.repository == 'Snapmaker/Luban'
run: |
ossutil cp -f ./output/ ${{secrets.OSS_UPDATE_PATH}}/ --include "*.deb" -r
ossutil cp -f ./output/ ${{secrets.OSS_UPDATE_PATH}}/ --include "*.rpm" -r
ossutil cp -f ./output/ ${{secrets.OSS_UPDATE_PATH}}/ --include "*.tar.gz" -r