Skip to content

Commit

Permalink
PyInstaller should no longer create separate directory with executable.
Browse files Browse the repository at this point in the history
  • Loading branch information
Shararamosh committed Aug 9, 2024
1 parent 0ea4b99 commit bc19b06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_executable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
- name: Install requirements
run: pip install pillow tqdm i18nice[YAML] pyinstaller
- name: Run PyInstaller
run: pyinstaller --onefile --name="Pillow_PNG_TGA_Editor" --console --icon=images\Pillows_Hat_Icon.tga main.py
run: pyinstaller --onedir --contents-directory=. --onefile --name="Pillow_PNG_TGA_Editor" --console --icon=images\Pillows_Hat_Icon.tga main.py
- name: Zip Assets
uses: vimtor/action-zip@v1.2
with:
files: dist/Pillow_PNG_TGA_Editor.exe images localization
files: Pillow_PNG_TGA_Editor.exe images localization
recursive: false
dest: Pillow_PNG_TGA_Editor.zip
- name: Create Automatic Windows Release
Expand Down

0 comments on commit bc19b06

Please sign in to comment.