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 0f92975 commit 64a0c0bCopy full SHA for 64a0c0b
.github/workflows/deploy.yml
@@ -0,0 +1,17 @@
1
+name: Deploy to AWS Amplify
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ deploy:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Trigger Amplify webhook
13
+ run: |
14
+ curl -X POST \
15
+ -H "Content-Type: application/json" \
16
+ -d {} \
17
+ "https://webhooks.amplify.us-west-1.amazonaws.com/prod/webhooks?id=${{ secrets.MQTT_AI_AMPLIFY_ID }}&token=${{ secrets.MQTT_AI_AMPLIFY_TOKEN }}&operation=startbuild"
0 commit comments