We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce2458c commit 8dcf196Copy full SHA for 8dcf196
.github/workflows/main.yml
@@ -39,4 +39,9 @@ jobs:
39
- name: clear build
40
run: |
41
sudo chmod -R 777 ./build
42
- rm -rf ./build
+ rm -rf ./build
43
+ - name: Deploy Completion Webhook
44
+ uses: joelwmale/webhook-action@master
45
+ env:
46
+ WEBHOOK_URL: ${{ secrets.SSR_COMPLETE_WEBHOOK }}
47
+ data: "{'deployment': 'finished'}"
deploy-hook/handler.js
@@ -1,7 +1,7 @@
1
const axios = require('axios');
2
const Redis = require('ioredis');
3
4
-async function initiateGithubAction(body: any) {
+async function initiateGithubAction(body) {
5
if (!body) {
6
return {
7
statusCode: 400,
0 commit comments