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 5639d14 commit af97c9eCopy full SHA for af97c9e
samples/mastra-nextjs/.github/workflows/deploy.yaml
@@ -0,0 +1,26 @@
1
+name: Deploy
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ deploy:
10
+ environment: playground
11
+ runs-on: ubuntu-latest
12
+ permissions:
13
+ contents: read
14
+ id-token: write
15
16
+ steps:
17
+ - name: Checkout Repo
18
+ uses: actions/checkout@v4
19
20
+ - name: Deploy
21
+ uses: DefangLabs/[email protected]
22
+ with:
23
+ config-env-vars: POSTGRES_PASSWORD GOOGLE_GENERATIVE_AI_API_KEY
24
+ env:
25
+ POSTGRES_PASSWORD: ${{ secrets.POSTGRES_PASSWORD }}
26
+ GOOGLE_GENERATIVE_AI_API_KEY: ${{ secrets.GOOGLE_GENERATIVE_AI_API_KEY }}
0 commit comments