Skip to content

Commit

Permalink
deploy(playwright): _really_ be more careful when auto-upgrading from…
Browse files Browse the repository at this point in the history
… HTTP -> HTTPS

I wanted to just leave http://git-scm.com/ alone in the parent commit,
but I should have let http://git-scm.com alone (note the missing
trailing slash)...

Signed-off-by: Johannes Schindelin <[email protected]>
  • Loading branch information
dscho committed Oct 7, 2024
1 parent d4f88c1 commit 0340ff6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/deploy-to-github-pages/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ runs:
run: |
# avoid test failures when HTTPS is enforced half-way through
case "$PLAYWRIGHT_TEST_URL" in
https://*|http://git-scm.com/) ;; # okay, leave as-is
https://*|http://git-scm.com) ;; # okay, leave as-is
http://*) PLAYWRIGHT_TEST_URL="https://${PLAYWRIGHT_TEST_URL#http://}";;
esac &&
npx playwright test --project=chrome
Expand Down

0 comments on commit 0340ff6

Please sign in to comment.