Skip to content

Commit 57a0ab6

Browse files
committed
feat(release): Add debug version to release
Added debug build and both versions to release: Changes: 1. Updated Create GitHub Release step: - Added RainingKeysPython-debug.zip (debug version) - Added RainingKeysPython.zip (release version) - Removed incorrect dist/ path (zips are in project root) Benefits: - Users can choose between release and debug versions - Release zip (no console, windowed) - Debug zip (with console for debugging) - Both built automatically by build.py - Correct file paths (project root, not dist/) Release now includes: 1. RainingKeysPython.zip - Optimized release build 2. RainingKeysPython-debug.zip - Debug build with console This provides both release and debug versions for users.
1 parent d3d943a commit 57a0ab6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ jobs:
4242
- name: Create GitHub Release
4343
uses: softprops/action-gh-release@v1
4444
with:
45-
files: dist/RainingKeysPython.exe
45+
files: |
46+
RainingKeysPython.zip
47+
RainingKeysPython-debug.zip
4648
body_path: CHANGELOG.md
4749
env:
4850
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)