From 24357073c85eb2f0073e948d5c6978a1c4f5cb9c Mon Sep 17 00:00:00 2001 From: Hannes Winkler Date: Tue, 13 Aug 2024 16:26:42 +0200 Subject: [PATCH] powershell uses `` for escaping newlines --- .github/workflows/build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1e2a09a..8ebbe3c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -901,7 +901,7 @@ jobs: working-directory: test_app run: | flutterpi_tool \ - build ${{ matrix.target-flags}} ${{ matrix.runtime-mode-flags }} \ + build ${{ matrix.target-flags }} ${{ matrix.runtime-mode-flags }} \ --verbose \ --github-artifacts-repo ${{ github.repository }} \ --github-artifacts-runid ${{ github.run_id }} \ @@ -912,11 +912,11 @@ jobs: working-directory: test_app shell: pwsh run: | - flutterpi_tool \ - build ${{ matrix.target-flags}} ${{ matrix.runtime-mode-flags }} \ - --verbose \ - --github-artifacts-repo ${{ github.repository }} \ - --github-artifacts-runid ${{ github.run_id }} \ + flutterpi_tool ` + build ${{ matrix.target-flags }} ${{ matrix.runtime-mode-flags }} ` + --verbose ` + --github-artifacts-repo ${{ github.repository }} ` + --github-artifacts-runid ${{ github.run_id }} ` --github-artifacts-auth-token ${{ secrets.GITHUB_TOKEN }} - name: Package app assets