-
Notifications
You must be signed in to change notification settings - Fork 9
278 lines (247 loc) · 8.49 KB
/
release.yml
File metadata and controls
278 lines (247 loc) · 8.49 KB
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
on:
release:
types:
- published
env:
DOTNET_VERSION: 9.0.x
jobs:
build-app:
strategy:
fail-fast: false
matrix:
project:
- Lip.CLI
runtime:
- linux-arm64
- linux-x64
- osx-arm64
- osx-x64
- win-arm64
- win-x64
self-contained:
- true
- false
include:
- runtime: linux-arm64
runs-on: ubuntu-22.04
- runtime: linux-x64
runs-on: ubuntu-latest
- runtime: osx-arm64
runs-on: macos-latest
- runtime: osx-x64
runs-on: macos-latest
- runtime: win-arm64
runs-on: windows-latest
- runtime: win-x64
runs-on: windows-latest
- self-contained: true
sc-flag: -self-contained
- self-contained: false
sc-flag: ''
permissions:
contents: read
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@v5
- uses: actions/setup-dotnet@v5
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
# - if: matrix.runtime == 'linux-arm64'
# run: |
# sudo dpkg --add-architecture arm64
# sudo bash -c 'cat > /etc/apt/sources.list.d/arm64.list <<EOF
# deb [arch=arm64] http://ports.ubuntu.com/ubuntu-ports/ jammy main restricted
# deb [arch=arm64] http://ports.ubuntu.com/ubuntu-ports/ jammy-updates main restricted
# deb [arch=arm64] http://ports.ubuntu.com/ubuntu-ports/ jammy-backports main restricted universe multiverse
# EOF'
# sudo sed -i -e 's/deb http/deb [arch=amd64] http/g' /etc/apt/sources.list
# sudo sed -i -e 's/deb mirror/deb [arch=amd64] mirror/g' /etc/apt/sources.list
# sudo apt update
# sudo apt install -y clang llvm binutils-aarch64-linux-gnu gcc-aarch64-linux-gnu zlib1g-dev:arm64
- id: get-version
uses: frabert/replace-string-action@9c9aeb483eab07adb9d0be75b5212cc0bcef0d4b # v2
with:
pattern: "^v"
string: ${{ github.event.release.tag_name }}
replace-with: ""
- run: >
dotnet publish ${{ matrix.project }}
--configuration Release
--output bin
--runtime ${{ matrix.runtime }}
--self-contained ${{ matrix.self-contained }}
-p:PublishSingleFile=true
-p:Version=${{ steps.get-version.outputs.replaced }}
- uses: actions/upload-artifact@v4
with:
name: ${{ github.event.repository.name }}-${{ matrix.project }}-${{ matrix.runtime }}${{ matrix.sc-flag }}-${{ github.sha }}
path: bin/
build-cli-windows-installer:
needs: build-app
permissions:
contents: read
strategy:
matrix:
runtime:
- arm64
- x64
self-contained:
- true
- false
include:
- runtime: arm64
runs-on: windows-latest
- runtime: x64
runs-on: windows-latest
- self-contained: true
sc-flag: -self-contained
ds-flag: -p:DefineConstants="DisableDotNetCheck"
- self-contained: false
sc-flag: ''
ds-flag: ''
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@v5
- uses: actions/setup-dotnet@v5
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- id: get-version
uses: frabert/replace-string-action@9c9aeb483eab07adb9d0be75b5212cc0bcef0d4b # v2
with:
pattern: "^v"
string: ${{ github.event.release.tag_name }}
replace-with: ""
# Prevent versions like 1.1.1-rc.1
- run: |
$inputString = "${{ steps.get-version.outputs.replaced }}"
if ($inputString -match "^(.*?)-") { $result = $matches[1] } else { $result = $inputString }
(Get-Content Package.wxs) -replace '0\.0\.0\.0', "$result.0" | Set-Content Package.wxs
shell: pwsh
working-directory: Lip.Installer
- uses: actions/download-artifact@v7
with:
name: ${{ github.event.repository.name }}-Lip.CLI-win-${{ matrix.runtime }}${{ matrix.sc-flag }}-${{ github.sha }}
path: bin/
- run: >
dotnet build Lip.Installer
--configuration Release
--output bin-installer
-p:Platform=${{ matrix.runtime }}
${{ matrix.ds-flag }}
- uses: actions/upload-artifact@v4
with:
name: ${{ github.event.repository.name }}-Lip.Installer-win-${{ matrix.runtime }}${{ matrix.sc-flag }}-${{ github.sha }}
path: bin-installer/
update-release-notes:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- id: extract-release-notes
uses: ffurrer2/extract-release-notes@9989ccec43d726ef05aa1cd7b2854fb96b6df6ab # v2
- uses: softprops/action-gh-release@6cbd405e2c4e67a21c47fa9e383d020e4e28b836 # v2
with:
body: ${{ steps.extract-release-notes.outputs.release_notes }}
upload-to-release-linux:
needs:
- build-app
- update-release-notes
permissions:
contents: write
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
project:
- Lip.CLI
runtime:
- linux-arm64
- linux-x64
sc-flag:
- ''
- -self-contained
include:
- project: Lip.CLI
sub-name: cli
steps:
- uses: actions/checkout@v5
- uses: actions/download-artifact@v7
with:
name: ${{ github.event.repository.name }}-${{ matrix.project }}-${{ matrix.runtime }}${{ matrix.sc-flag }}-${{ github.sha }}
path: artifact/
- run: |
cp CHANGELOG.md COPYING README.md artifact/
- run: |
tar -czvf ../${{ github.event.repository.name }}-${{ matrix.sub-name }}-${{ matrix.runtime }}${{ matrix.sc-flag }}.tar.gz *
working-directory: artifact
- uses: softprops/action-gh-release@6cbd405e2c4e67a21c47fa9e383d020e4e28b836 # v2
with:
files: |
${{ github.event.repository.name }}-${{ matrix.sub-name }}-${{ matrix.runtime }}${{ matrix.sc-flag }}.tar.gz
upload-to-release-macos-and-windows:
needs:
- build-app
- update-release-notes
permissions:
contents: write
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
project:
- Lip.CLI
runtime:
- osx-arm64
- osx-x64
- win-arm64
- win-x64
sc-flag:
- ''
- -self-contained
include:
- project: Lip.CLI
sub-name: cli
steps:
- uses: actions/checkout@v5
- uses: actions/download-artifact@v7
with:
name: ${{ github.event.repository.name }}-${{ matrix.project }}-${{ matrix.runtime }}${{ matrix.sc-flag }}-${{ github.sha }}
path: artifact/
- run: |
cp CHANGELOG.md COPYING README.md artifact/
- run: |
zip -r ../${{ github.event.repository.name }}-${{ matrix.sub-name }}-${{ matrix.runtime }}${{ matrix.sc-flag }}.zip *
working-directory: artifact
- uses: softprops/action-gh-release@6cbd405e2c4e67a21c47fa9e383d020e4e28b836 # v2
with:
files: |
${{ github.event.repository.name }}-${{ matrix.sub-name }}-${{ matrix.runtime }}${{ matrix.sc-flag }}.zip
upload-to-release-windows-installer:
needs: build-cli-windows-installer
permissions:
contents: write
runs-on: ubuntu-latest
strategy:
matrix:
lang:
- en-US
- zh-CN
runtime:
- win-arm64
- win-x64
sc-flag:
- ''
- -self-contained
steps:
- uses: actions/checkout@v5
- uses: actions/download-artifact@v7
with:
name: ${{ github.event.repository.name }}-Lip.Installer-${{ matrix.runtime }}${{ matrix.sc-flag }}-${{ github.sha }}
path: artifact-installer/
- run: |
mv artifact-installer/${{ matrix.lang }}/Lip.Installer.msi artifact-installer/${{ github.event.repository.name }}-cli-${{ matrix.runtime }}${{ matrix.sc-flag }}-${{ matrix.lang }}.msi
- uses: softprops/action-gh-release@6cbd405e2c4e67a21c47fa9e383d020e4e28b836 # v2
with:
files: |
artifact-installer/${{ github.event.repository.name }}-cli-${{ matrix.runtime }}${{ matrix.sc-flag }}-${{ matrix.lang }}.msi