Skip to content

Commit cca2b76

Browse files
committed
Fixing the build action (again)
1 parent 0308230 commit cca2b76

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,12 @@ jobs:
4040
with:
4141
name: build_release
4242
path: .
43-
- run: cd exe.win*
44-
- run: zip -r SETS.zip .
45-
- run: mv SETS.zip ..
46-
- run: cd ..
43+
- name: Bundle App
44+
run: |
45+
cd exe.win*
46+
zip -r SETS.zip .
47+
mv SETS.zip ..
48+
cd ..
4749
- name: Create release
4850
uses: ncipollo/release-action@v1
4951
with:

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
class Launcher():
88

9-
version = '2025.02b254'
9+
version = '2025.02b255'
1010
__version__ = '2.0'
1111

1212
# holds the style of the app

0 commit comments

Comments
 (0)