-
Notifications
You must be signed in to change notification settings - Fork 63
292 lines (283 loc) · 10.9 KB
/
commit_bundler.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
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
name: package builder commit
on:
push:
jobs:
create_version:
runs-on: ubuntu-20.04
name: create version doc
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python 3.11.5
uses: actions/setup-python@v4
with:
python-version: '3.11.5'
- name: install dunamai
run: pip install dunamai
- name: replace_version
run: |
sed -i -e s/'from dunamai import Version,Pattern'// ofscraper/__version__.py
sed -i -e s/'Version.from_git(pattern=.*'/\""$(git from git --format "{base}+{branch}.{commit}" --pattern "(?P<base>\d+\.\d+\.\w+|\d+\.\w+)")"\"/ ofscraper/__version__.py
- name: show file
run: cat ofscraper/__version__.py
- name: upload file
uses: actions/upload-artifact@v3
with:
name: ofscraper_version
path: /home/runner/work/OF-Scraper/OF-Scraper/ofscraper/__version__.py
# - name: list files 1
# run: ls /home/runner/work/
# - name: list files 2
# run: ls /home/runner/work/OF-Scraper/
# - name: list files 3
# run: ls /home/runner/work/OF-Scraper/OF-Scraper
# - name: list files 4
# run: ls /home/runner/work/OF-Scraper/OF-Scraper/ofscraper
linux:
needs: [create_version]
runs-on: ubuntu-20.04
name: create linux release
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: list files
run: ls -d $PWD/*
- name: list files2
run: ls -d $PWD/ofscraper/*
- name: commit
uses: pr-mpt/actions-commit-hash@v2
id: commit
- name: replace version.py
uses: actions/download-artifact@v3
with:
name: ofscraper_version
path: ofscraper
- name: create one file
uses: addnab/docker-run-action@v3
with:
image: datawhores/ubuntu:latest
options: -v ${{ github.workspace }}:/root/work
shell: bash
run: |
cd work
apt-get install zip libxml2-dev libxslt-dev -y
python3.11 -m venv .venv
/root/.local/bin/poetry install --with build
/root/.local/bin/poetry install
echo "install run pyinstaller"
/root/.local/bin/poetry run pyinstaller .venv/bin/ofscraper --collect-submodules application --name "ofscraper_linux_${{ steps.commit.outputs.short}}" --onefile
- name: upload one file
uses: actions/upload-artifact@v3
with:
name: ofscraper_linux
path: "dist/ofscraper_linux_${{ steps.commit.outputs.short}}"
- name: create zip
uses: addnab/docker-run-action@v3
with:
image: datawhores/ubuntu:latest
options: -v ${{ github.workspace }}:/root/work
shell: bash
run: |
cd work
apt-get install zip libxml2-dev libxslt-dev -y
python3.11 -m venv .venv
/root/.local/bin/poetry install --with build
/root/.local/bin/poetry install
/root/.local/bin/poetry run pyinstaller .venv/bin/ofscraper --collect-submodules application --name "ofscraper_linux_${{ steps.commit.outputs.short}}" --onefile
zip -r "dist/ofscraper_linux_${{steps.commit.outputs.short}}.zip" "dist/ofscraper_linux_${{steps.commit.outputs.short}}"
- name: upload one file
uses: actions/upload-artifact@v3
with:
name: ofscraper_linux_zip
path: "dist/ofscraper_linux_${{ steps.commit.outputs.short}}.zip"
windows:
needs: [create_version]
runs-on: windows-latest
name: create windows release
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: list files
run: ls .
- name: list files2
run: ls ofscraper
- name: commit
uses: pr-mpt/actions-commit-hash@v2
id: commit
- name: replace version.py
uses: actions/download-artifact@v3
with:
name: ofscraper_version
path: ofscraper
- name: Set up Python 3.11.5
uses: actions/setup-python@v4
with:
python-version: '3.11.5'
- name: install poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: 1.4.1
- name: create virtualenv
run: python3 -m venv .venv
- name: active env
run: poetry env use .venv/Scripts/python3
- name: Install package
run: poetry install
- name: Install builder
run: poetry add pyinstaller
# - name: temp deactive
# run: deactive
- name: create-one-file
id: create-one-file
run: poetry run pyinstaller D:\a\OF-Scraper\OF-Scraper\ofscraper\__main__.py --collect-submodules ofscraper --onefile --name "ofscraper_windows_${{ steps.commit.outputs.short}}"
continue-on-error: true
- name: active env for createfile2
run: poetry env use .venv/Scripts/python3
- name: create-one-file2
id: create-one-file2
if: steps.create-one-file.outcome != 'success'
run: poetry run pyinstaller .venv/Scripts/ofscraper --collect-submodules application --onefile --name "ofscraper_windows_${{ steps.commit.outputs.short}}"
- name: upload file
uses: actions/upload-artifact@v3
with:
name: ofscraper_windows
path: 'dist\ofscraper_windows_${{ steps.commit.outputs.short}}.exe'
# - name: temp deactive
# run: deactive
- name: create-dir
id: create-dir
run: poetry run pyinstaller D:\a\OF-Scraper\OF-Scraper\ofscraper\__main__.py --collect-submodules ofscraper --name "ofscraper_windows_${{steps.commit.outputs.short}}"
continue-on-error: true
- name: active env for create-dir2
run: poetry env use .venv/Scripts/python3
- name: create-dir2
id: create-one-dir2
if: steps.create-dir.outcome != 'success'
run: poetry run pyinstaller .venv/Scripts/ofscraper --collect-submodules application --name "ofscraper_windows_${{steps.commit.outputs.short}}"
- uses: vimtor/action-zip@v1
with:
files: "dist/ofscraper_windows_${{steps.commit.outputs.short}}"
dest: "dist/ofscraper_windows_${{steps.commit.outputs.short}}.zip"
- name: upload file
uses: actions/upload-artifact@v3
with:
name: ofscraper_windows_zip
path: "dist/ofscraper_windows_${{steps.commit.outputs.short}}.zip"
mac:
needs: [create_version]
runs-on: macos-latest
name: create mac release
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: list files
run: ls -d $PWD/*
- name: list files2
run: ls -d $PWD/ofscraper/*
- name: commit
uses: pr-mpt/actions-commit-hash@v2
id: commit
- name: replace version.py
uses: actions/download-artifact@v3
with:
name: ofscraper_version
path: ofscraper
- name: Set up Python 3.11.5
uses: actions/setup-python@v4
with:
python-version: '3.11.5'
- name: create virtualenv
run: python3 -m venv .venv
- name: install poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: 1.4.1
- name: Install package
run: poetry install
- name: Install builder
run: pip install pyinstaller
- name: create-one-file
id: create-one-file
run: poetry run pyinstaller /Users/runner/work/OF-Scraper/OF-Scraper/ofscraper/__main__.py --collect-submodules ofscraper --onefile --name "ofscraper_macos_${{ steps.commit.outputs.short}}"
continue-on-error: true
- name: create-one-file2
id: create-one-file2
if: steps.create-one-file.outcome != 'success'
run: poetry run pyinstaller .venv/bin/ofscraper --collect-submodules application --onefile --name "ofscraper_macos_${{ steps.commit.outputs.short}}"
- name: upload fille
uses: actions/upload-artifact@v3
with:
name: ofscraper_macos
path: "dist/ofscraper_macos_${{ steps.commit.outputs.short}}"
- name: create-dir
id: create-dir
run: poetry run pyinstaller /Users/runner/work/OF-Scraper/OF-Scraper/ofscraper/__main__.py --collect-submodules ofscraper --name "ofscraper_macos_${{ steps.commit.outputs.short}}"
continue-on-error: true
- name: create-dir2
id: create-dir2
if: steps.create-dir.outcome != 'success'
run: poetry run pyinstaller .venv/bin/ofscraper --collect-submodules application --name "ofscraper_macos_${{ steps.commit.outputs.short}}"
- uses: vimtor/action-zip@v1
with:
files: "dist/ofscraper_macos_${{ steps.commit.outputs.short}}"
dest: "dist/ofscraper_macos_${{ steps.commit.outputs.short}}.zip"
- name: upload file
uses: actions/upload-artifact@v3
with:
name: ofscraper_macos_zip
path: "dist/ofscraper_macos_${{steps.commit.outputs.short}}.zip"
publish_release:
runs-on: ubuntu-latest
name: publish
needs: [mac,windows,linux]
permissions:
contents: write
steps:
- name: Download linux
uses: actions/download-artifact@v3
with:
name: ofscraper_linux
- name: Download linux zip
uses: actions/download-artifact@v3
with:
name: ofscraper_linux_zip
- name: Download mac
uses: actions/download-artifact@v3
with:
name: ofscraper_macos
- name: Download mac zip
uses: actions/download-artifact@v3
with:
name: ofscraper_macos_zip
- name: Download windows
uses: actions/download-artifact@v3
with:
name: ofscraper_windows
- name: Download windows zip
uses: actions/download-artifact@v3
with:
name: ofscraper_windows_zip
- name: commit
uses: pr-mpt/actions-commit-hash@v2
id: commit
- name: Get current date
id: date
run: echo "date=$(date +'%Y.%m.%d_%H:%M')" >> $GITHUB_OUTPUT
- name: create release
uses: ncipollo/release-action@v1
with:
artifacts: "/home/runner/work/OF-Scraper/OF-Scraper/ofscraper_*"
tag: ${{steps.commit.outputs.short}}
name: ${{env.name}}
body: ${{env.body}}
env:
name: "${{steps.date.outputs.date}}_${{ github.head_ref || github.ref_name }}_${{ steps.commit.outputs.short}}_package"
body: "This is a auto generated release created from commit ${{ steps.commit.outputs.hash}}"