Skip to content

Commit

Permalink
ci: Add bash quotes around $WEBHOOK_URL
Browse files Browse the repository at this point in the history
  • Loading branch information
redmushie committed Oct 6, 2023
1 parent 81efe68 commit 89a9556
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,4 +114,4 @@ jobs:
env:
WEBHOOK_URL: ${{ secrets.WEBHOOK_URL }}
run: |
curl -X HEAD -d "" $WEBHOOK_URL
curl -X HEAD -d "" "$WEBHOOK_URL"
2 changes: 1 addition & 1 deletion .github/workflows/ci-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,4 +117,4 @@ jobs:
env:
WEBHOOK_URL: ${{ secrets.WEBHOOK_URL }}
run: |
curl -X HEAD -d "" $WEBHOOK_URL
curl -X HEAD -d "" "$WEBHOOK_URL"

0 comments on commit 89a9556

Please sign in to comment.