Skip to content

Merge pull request #946 from SSWConsulting/tiagov8-patch-1 #11

Merge pull request #946 from SSWConsulting/tiagov8-patch-1

Merge pull request #946 from SSWConsulting/tiagov8-patch-1 #11

Workflow file for this run

name: CICD (Staging, Prod)
on:
push:
branches:
- main
paths-ignore:
- .gitignore
- README.md
- README_DOCKER.md
- CONTRIBUTING.md
workflow_dispatch:
defaults:
run:
shell: pwsh
jobs:
test-build:
uses: ./.github/workflows/template-test-build.yml
secrets: inherit
staging-deploy:
needs: test-build
uses: ./.github/workflows/template-deploy-environment.yml
with:
environment: Staging
secrets: inherit
prod-deploy:
needs: staging-deploy
uses: ./.github/workflows/template-deploy-environment.yml
with:
environment: Production
secrets: inherit