Skip to content

Commit d4446bd

Browse files
committed
remove debugging, rename steps so they are unique
1 parent e4a2623 commit d4446bd

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

.github/workflows/automaticRelease.yaml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -207,11 +207,10 @@ jobs:
207207
for f in *.nvda-addon; do
208208
mv "$f" "${f%.nvda-addon}-64.nvda-addon"
209209
done
210-
ls -l *.nvda-addon
211210
- name: Upload the addon
212211
uses: actions/upload-artifact@v4
213212
with:
214-
name: addon
213+
name: addon-64
215214
path: "*.nvda-addon"
216215
compression-level: 0
217216
retention-days: 1
@@ -266,11 +265,10 @@ jobs:
266265
for f in *.nvda-addon; do
267266
mv "$f" "${f%.nvda-addon}-32.nvda-addon"
268267
done
269-
ls -l *.nvda-addon
270268
- name: Upload the addon
271269
uses: actions/upload-artifact@v4
272270
with:
273-
name: addon
271+
name: addon-32
274272
path: "*.nvda-addon"
275273
compression-level: 0
276274
retention-days: 1
@@ -301,10 +299,18 @@ jobs:
301299
uses: actions/download-artifact@v4
302300
with:
303301
name: libmathcat_py-64-3.13-linux.zip
304-
- name: download the addon
302+
- name: Download 64-bit addon
305303
uses: actions/download-artifact@v4
306304
with:
307-
name: addon
305+
name: addon-64
306+
- name: Download 32-bit addon
307+
uses: actions/download-artifact@v4
308+
with:
309+
name: addon-32
310+
- name: Consolidate addon files
311+
run: |
312+
mv addon-64/*.nvda-addon . 2>/dev/null || true
313+
mv addon-32/*.nvda-addon . 2>/dev/null || true
308314
# put the files into the release
309315
- name: Automatic release
310316
uses: marvinpinto/action-automatic-releases@latest

0 commit comments

Comments
 (0)