Skip to content

Commit

Permalink
Fix multiline command syntax in GitHub Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mschabhuettl committed Nov 16, 2023
1 parent 9af4ac9 commit d3b0744
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,14 @@ jobs:
shell: pwsh

# Build the EXE with PyInstaller with Optimized Settings
- name: Build EXE with Pyinstaller (Optimized)
- name: Build EXE with Pyinstaller
run: |
pyinstaller \
--name SP5ToICalExp \
--noconsole \
--add-data "src/app/templates;templates/" \
--add-data "src/utils;utils/" \
--add-data "$(python -c 'import dateutil.zoneinfo; print(dateutil.__path__[0])')/zoneinfo;dateutil/zoneinfo" \
--exclude-module _bootlocale \
src/main.py
pyinstaller `
--name SP5ToICalExp `
--add-data "src/app/templates;templates/" `
--add-data "src/utils;utils/" `
--add-data "$(python -c 'import dateutil.zoneinfo; print(dateutil.__path__[0])')/zoneinfo;dateutil/zoneinfo" `
src/main.py
shell: pwsh

# List All Files After Build for Debugging Purposes
Expand Down

0 comments on commit d3b0744

Please sign in to comment.