From 7f231f67c9c714227f57dacf0cbe16457586ce66 Mon Sep 17 00:00:00 2001 From: lavirlifiliol Date: Mon, 29 Mar 2021 09:27:13 +0200 Subject: [PATCH] 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. --- .github/workflows/release.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index febb002..674575a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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