Skip to content

Commit 7f231f6

Browse files
committed
Switch to line continuation characters
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.
1 parent ee06734 commit 7f231f6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ jobs:
3737
run: poetry run pip install -e pyinstaller
3838

3939
- name: call pyinstaller
40-
run: >
41-
poetry run pyinstaller
42-
--add-data ".;."
43-
--windowed
44-
--name "Protect the Pond Quack the Case"
45-
--onefile
40+
run: |
41+
poetry run pyinstaller `
42+
--add-data ".;." `
43+
--windowed `
44+
--name "Protect the Pond Quack the Case" `
45+
--onefile `
4646
aaaaAAAA/__main__.py
4747
4848
- name: Upload the artifacts

0 commit comments

Comments
 (0)