Skip to content

Commit

Permalink
Switch to line continuation characters
Browse files Browse the repository at this point in the history
Github actions don't seem to support > correctly, so this is the
workaround. Linux build, if we end up adding will likely need to be separate
anyway.
  • Loading branch information
lavirlifiliol committed Mar 29, 2021
1 parent ee06734 commit 7f231f6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ jobs:
run: poetry run pip install -e pyinstaller

- name: call pyinstaller
run: >
poetry run pyinstaller
--add-data ".;."
--windowed
--name "Protect the Pond Quack the Case"
--onefile
run: |
poetry run pyinstaller `
--add-data ".;." `
--windowed `
--name "Protect the Pond Quack the Case" `
--onefile `
aaaaAAAA/__main__.py
- name: Upload the artifacts
Expand Down

0 comments on commit 7f231f6

Please sign in to comment.