We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc40fbc commit 9c263c3Copy full SHA for 9c263c3
.github/workflows/ports_m68kmac.yml
@@ -3,6 +3,9 @@ name: m68k macintosh port
3
on:
4
push:
5
pull_request:
6
+ release:
7
+ types:
8
+ - created
9
10
concurrency:
11
group: ${{ github.workflow }}-${{ github.ref }}
@@ -24,8 +27,14 @@ jobs:
24
27
make -C mpy-cross -j$(nproc)
25
28
make -C ports/m68kmac submodules
26
29
make -C ports/m68kmac -j$(nproc)
30
+
31
- name: Upload disk image
32
uses: actions/upload-artifact@v4
33
with:
34
path: ports/m68kmac/build/micropython.dsk
35
36
+ - uses: shogo82148/actions-upload-release-asset@v1
37
+ if: ${{ github.event_name == 'release' }}
38
+ with:
39
+ asset_path: "ports/m68kmac/build/micropython.dsk"
40
+ upload_url: ${{ github.event.release.upload_url }}
0 commit comments