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 36972f3 commit db853bcCopy full SHA for db853bc
1 file changed
.github/workflows/build-sveltekit.yml
@@ -48,4 +48,18 @@ jobs:
48
labels: ${{ steps.meta.outputs.labels }}
49
# "PORT=${{ secrets.SV_PORT }}"
50
# "CAPTCHAKEY=${{ secrets.CAPTCHAKEY }}"
51
- # "PB_URL=${{ secrets.PB_URL }}"
+ # "PB_URL=${{ secrets.PB_URL }}"
52
+
53
+ - name: Trigger Dokploy Deployment
54
+ run: |
55
+ curl -X 'POST' \
56
+ '${{ secrets.DOKPLOY_WEBHOOK_URL }}' \
57
+ -H 'Content-Type: application/json' \
58
+ -H 'x-github-event: push' \
59
+ -d '{
60
+ "ref": "refs/heads/production",
61
+ "head_commit": {
62
+ "id": "${{ github.sha }}",
63
+ "message": "Deployment from Github Actions"
64
+ }
65
+ }'
0 commit comments