Skip to content

Commit 11a9d4c

Browse files
authored
Create cicd-try1.yml
1 parent 535d85a commit 11a9d4c

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/cicd-try1.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI/CD Try1
2+
on: push
3+
4+
jobs:
5+
deploy-dev:
6+
uses: ./.github/workflows/deploy.yml
7+
with:
8+
environment: dev
9+
10+
deploy-staging:
11+
needs: deploy-dev
12+
uses: ./.github/workflows/deploy.yml
13+
with:
14+
environment: staging
15+
16+
deploy-prod:
17+
needs: deploy-staging
18+
uses: ./.github/workflows/deploy.yml
19+
with:
20+
environment: prod

0 commit comments

Comments
 (0)