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 c8a372c commit 50a197dCopy full SHA for 50a197d
.github/workflows/deploy.yaml
@@ -15,4 +15,7 @@ jobs:
15
steps:
16
- name: Trigger deploy
17
run: |
18
- 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 }} \
19
+ -H "X-Key: ${{ secrets.HOOKSECRET }}" \
20
+ -H "Content-Type: application/x-www-form-urlencoded" \
21
+ -d "commit=${{ github.sha }}"
0 commit comments