Skip to content

Commit

Permalink
fix 4
Browse files Browse the repository at this point in the history
  • Loading branch information
Viren070 committed Oct 10, 2024
1 parent 63e2467 commit d2adf10
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/release_app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,13 @@ jobs:
id: determine-path
run: |
echo "CUSTOMTKINTER_PATH=$(python -c 'import customtkinter; print(customtkinter.__path__[0])')" >> $GITHUB_ENV
echo "CUSTOMTKINTER_PATH=${{ env.CUSTOMTKINTER_PATH }}"
- name: Build distributables
run: |
if [ -z "${{ env.CUSTOMTKINTER_PATH }}" ]; then
echo "CUSTOMTKINTER_PATH=${{ env.Python_ROOT_DIR }}/Lib/site-packages/customtkinter" >> $GITHUB_ENV
fi
pyinstaller --noconfirm --onedir --console --name "EmuHaven" --clean --add-data="${{ env.CUSTOMTKINTER_PATH }}:customtkinter/" --add-data="src/assets:assets/" src/main.py
- name: Create release archive
Expand Down

0 comments on commit d2adf10

Please sign in to comment.