Skip to content

Commit

Permalink
powershell uses `` for escaping newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
ardera committed Aug 13, 2024
1 parent 6b6a88c commit 2435707
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }} \
Expand All @@ -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
Expand Down

0 comments on commit 2435707

Please sign in to comment.