-
-
Notifications
You must be signed in to change notification settings - Fork 246
248 lines (210 loc) · 7.16 KB
/
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
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
name: New Release
on:
push:
tags:
- 'v*.*.*'
permissions:
contents: write
jobs:
release:
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- name: Build Changelog
id: github_release
uses: mikepenz/release-changelog-builder-action@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
configurationJson: |
{
"template": "## What's Changed\n\n<details>\n<summary>Uncategorized</summary>\n\n#{{UNCATEGORIZED}}\n</details>\n\nIf you find this project useful, please consider [sponsoring](https://ko-fi.com/vietanhdev) its development.",
"categories": [
{
"title": "## 🚀 Features",
"labels": ["feature"]
},
{
"title": "## 🐛 Fixes",
"labels": ["fix"]
},
{
"title": "## 💬 Other",
"labels": ["other"]
}
]
}
- name: Create Release
id: create_release
uses: mikepenz/[email protected]
with:
body: ${{steps.github_release.outputs.changelog}}
draft: true
prerelease: true
- name: Create release url file
run: echo "${{ steps.create_release.outputs.upload_url }}" > release_url.txt
- name: Save release url file for publish
uses: actions/upload-artifact@v4
with:
name: release_url
path: release_url.txt
publish:
needs: [release]
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: conda-incubator/setup-miniconda@v2
with:
python-version: "3.10.14"
miniconda-version: "latest"
- name: Set preferred device to CPU
shell: bash -l {0}
run: >-
sed -i'' -e 's/\_\_preferred_device\_\_[ ]*=[ ]*\"[A-Za-z0-9]*\"/__preferred_device__ = "CPU"/g' anylabeling/app_info.py
- name: Install main
shell: bash -l {0}
run: |
pip install .
- name: Install PyQt5 for macOS
shell: bash -l {0}
run: |
conda install -c conda-forge pyqt==5.15.7
if: runner.os == 'macOS'
- name: Run pyinstaller
shell: bash -l {0}
run: |
pip install pyinstaller
pyinstaller anylabeling.spec
- name: Load release url file from release job
uses: actions/download-artifact@v4
with:
name: release_url
- name: Get release file name & upload url
id: get_release_info
run: |
echo "::set-output name=upload_url::$(cat release_url/release_url.txt)"
- name: Upload release executable on macOS & Linux
id: upload_release_executable_macos_linux
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.get_release_info.outputs.upload_url }}
asset_path: ./dist/anylabeling
asset_name: AnyLabeling-${{ runner.os }}
asset_content_type: application/octet-stream
if: runner.os != 'Windows'
- name: Upload release executable on Windows
id: upload_release_executable_windows
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.get_release_info.outputs.upload_url }}
asset_path: ./dist/anylabeling.exe
asset_name: AnyLabeling.exe
asset_content_type: application/octet-stream
if: runner.os == 'Windows'
- name: Create dmg for macOS
run: |
npm install -g create-dmg
cd dist
create-dmg AnyLabeling.app || test -f AnyLabeling\ 0.0.0.dmg
mv AnyLabeling\ 0.0.0.dmg AnyLabeling.dmg
if: runner.os == 'macOS'
- name: Upload release app on macOS
id: upload_release_app_macos
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.get_release_info.outputs.upload_url }}
asset_path: ./dist/AnyLabeling.dmg
asset_name: AnyLabeling.dmg
asset_content_type: application/octet-stream
if: runner.os == 'macOS'
publish-gpu:
needs: [release]
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: conda-incubator/setup-miniconda@v2
with:
python-version: "3.10.14"
miniconda-version: "latest"
- name: Set preferred device to GPU
shell: bash -l {0}
run: >-
sed -i'' -e 's/\_\_preferred_device\_\_[ ]*=[ ]*\"[A-Za-z0-9]*\"/__preferred_device__ = "GPU"/g' anylabeling/app_info.py
- name: Install main
shell: bash -l {0}
run: |
pip install .
- name: Install PyQt5 for macOS
shell: bash -l {0}
run: |
conda install -c conda-forge pyqt==5.15.7
if: runner.os == 'macOS'
- name: Run pyinstaller
shell: bash -l {0}
run: |
pip install pyinstaller
pyinstaller anylabeling.spec
- name: Load release url file from release job
uses: actions/download-artifact@v4
with:
name: release_url
- name: Get release file name & upload url
id: get_release_info
run: |
echo "::set-output name=upload_url::$(cat release_url/release_url.txt)"
- name: Upload release executable on macOS & Linux
id: upload_release_executable_macos_linux
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.get_release_info.outputs.upload_url }}
asset_path: ./dist/anylabeling
asset_name: AnyLabeling-${{ runner.os }}-GPU
asset_content_type: application/octet-stream
if: runner.os != 'Windows'
- name: Upload release executable on Windows
id: upload_release_executable_windows
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.get_release_info.outputs.upload_url }}
asset_path: ./dist/anylabeling.exe
asset_name: AnyLabeling-GPU.exe
asset_content_type: application/octet-stream
if: runner.os == 'Windows'
- name: Create dmg for macOS
run: |
npm install -g create-dmg
cd dist
create-dmg AnyLabeling.app || test -f AnyLabeling\ 0.0.0.dmg
mv AnyLabeling\ 0.0.0.dmg AnyLabeling-GPU.dmg
if: runner.os == 'macOS'
- name: Upload release app on macOS
id: upload_release_app_macos
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.get_release_info.outputs.upload_url }}
asset_path: ./dist/AnyLabeling-GPU.dmg
asset_name: AnyLabeling-GPU.dmg
asset_content_type: application/octet-stream
if: runner.os == 'macOS'