We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0308230 commit cca2b76Copy full SHA for cca2b76
2 files changed
.github/workflows/build.yml
@@ -40,10 +40,12 @@ jobs:
40
with:
41
name: build_release
42
path: .
43
- - run: cd exe.win*
44
- - run: zip -r SETS.zip .
45
- - run: mv SETS.zip ..
46
- - run: cd ..
+ - name: Bundle App
+ run: |
+ cd exe.win*
+ zip -r SETS.zip .
47
+ mv SETS.zip ..
48
+ cd ..
49
- name: Create release
50
uses: ncipollo/release-action@v1
51
main.py
@@ -6,7 +6,7 @@
6
7
class Launcher():
8
9
- version = '2025.02b254'
+ version = '2025.02b255'
10
__version__ = '2.0'
11
12
# holds the style of the app
0 commit comments