Skip to content

Commit 75a783c

Browse files
Add beta deploy to test
1 parent 1e555f4 commit 75a783c

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/workflows/deploy_beta.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
uses: ./.github/workflows/gcp-build.reusable.yml
23+
with:
24+
environment: prod
25+
secrets: inherit
26+
27+
deploy_beta:
28+
name: Deploy beta
29+
needs: [build_beta]
30+
uses: ./.github/workflows/gcp-deploy.reusable.yml
31+
with:
32+
environment: beta
33+
secrets: inherit

0 commit comments

Comments
 (0)