Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Create cicd-try1.yml #1

Create cicd-try1.yml

Create cicd-try1.yml #1

Workflow file for this run

name: CI/CD Try1
on: push
jobs:
deploy-dev:
uses: ./.github/workflows/deploy.yml
with:
environment: dev
deploy-staging:
needs: deploy-dev
uses: ./.github/workflows/deploy.yml
with:
environment: staging
deploy-prod:
needs: deploy-staging
uses: ./.github/workflows/deploy.yml
with:
environment: prod