We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4f5c53 commit 6432dafCopy full SHA for 6432daf
.github/workflows/deploy.yaml
@@ -13,4 +13,7 @@ jobs:
13
steps:
14
- name: Trigger deploy
15
run: |
16
- curl --fail-with-body --silent --show-error -X POST "${{ secrets.HOOKURL }}?commit=${{ github.sha }}" -H "X-Key: ${{ secrets.HOOKSECRET }}"
+ curl --fail-with-body --silent --show-error -X POST ${{ secrets.HOOKURL }} \
17
+ -H "X-Key: ${{ secrets.HOOKSECRET }}" \
18
+ -H "Content-Type: application/x-www-form-urlencoded" \
19
+ -d "commit=${{ github.sha }}"
0 commit comments