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 b31b0be commit 592e579Copy full SHA for 592e579
.github/workflows/dart.yml
@@ -0,0 +1,17 @@
1
+name: Trigger Flutter Deploy on Render
2
+
3
+on:
4
+ push:
5
+ branches: [main] # or whichever branch your Render site is watching
6
7
+jobs:
8
+ deploy:
9
+ runs-on: ubuntu-latest
10
11
+ steps:
12
+ - name: Trigger Render Deploy Hook
13
+ run: |
14
+ curl -fsSL -X POST \
15
+ -H "Content-Type: application/json" \
16
+ -d '{"trigger":"github-action"}' \
17
+ "https://api.render.com/deploy/srv-d1qtv33uibrs73etd8gg?key=FUF7RSimw8E"
0 commit comments