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 1e555f4 commit 75a783cCopy full SHA for 75a783c
.github/workflows/deploy_beta.yml
@@ -0,0 +1,33 @@
1
+name: Deploy (beta)
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - streamline
7
8
+concurrency:
9
+ group: deploy-main
10
11
+jobs:
12
+ build_beta:
13
+ name: Build beta
14
+ uses: ./.github/workflows/gcp-build.reusable.yml
15
+ with:
16
+ environment: beta
17
+ secrets: inherit
18
19
+ build_prod:
20
+ name: Build production
21
+ needs: [build_beta]
22
23
24
+ environment: prod
25
26
27
+ deploy_beta:
28
+ name: Deploy beta
29
30
+ uses: ./.github/workflows/gcp-deploy.reusable.yml
31
32
33
0 commit comments