Skip to content

Commit

Permalink
try printf instead
Browse files Browse the repository at this point in the history
  • Loading branch information
wkelly17 committed Nov 20, 2024
1 parent f65f2b8 commit 115033d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
deploy:
runs-on: ubuntu-latest
env:
SHOULD_RUN_E2E_TESTS: github.event_name != 'workflow_dispatch' || github.ref == 'refs/heads/prod'
SHOULD_RUN_E2E_TESTS: ${{ github.event_name != 'workflow_dispatch' || github.ref == 'refs/heads/prod' }}
permissions:
contents: read
deployments: write
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:

- name: Copy in cf dev vars if testing
run: |
echo $CF_DEV_VARS > .dev.vars
printf "%s\n" "$CF_DEV_VARS" > .dev.vars
if: env.SHOULD_RUN_E2E_TESTS
- name: Install Playwright Browsers
run: pnpm exec playwright install --with-deps
Expand Down

0 comments on commit 115033d

Please sign in to comment.