Skip to content

Commit 6083f5e

Browse files
committed
This should build & release both the linux AppImage and the Windows executable of our example Hello World GUI app using kivy.
Apparently the GitHub releases page doesn't order by date; it orders alphabetically? Let's try putting the number before the OS in the tag, then.
1 parent 080ba80 commit 6083f5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
env:
3737
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3838
with:
39-
tag_name: linux_${{ github.run_id }}
39+
tag_name: ${{ github.run_id }}_linux
4040
release_name: 'Public Build Artifact: Linux ${{ github.run_id }}'
4141
draft: false
4242
prerelease: true
@@ -82,7 +82,7 @@ jobs:
8282
env:
8383
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8484
with:
85-
tag_name: windows_${{ github.run_id }}
85+
tag_name: ${{ github.run_id }}_windows
8686
release_name: 'Public Build Artifact: Windows ${{ github.run_id }}'
8787
draft: false
8888
prerelease: true

0 commit comments

Comments
 (0)