Skip to content

Commit 3bed88d

Browse files
authored
chore: fix site publish workflow logic (#371)
1 parent 3d2c429 commit 3bed88d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ jobs:
252252
payload: ${{ steps.publish-test-results.outputs.slackEvent }}
253253

254254
- name: Publish test site
255-
if: (success() || failure()) && matrix.version == 'latest' && github.event_name == ('schedule' || 'workflow_dispatch') && github.head_ref == 'main'
255+
if: (success() || failure()) && matrix.version == 'latest' && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') && github.head_ref == 'main'
256256
run: |
257257
deno run -A tools/deno/junit2html.ts artifacts ${{needs.e2e.outputs.tag}} > report/index.html
258258
npx --yes netlify-cli@latest deploy --prod --cwd report

0 commit comments

Comments
 (0)