Skip to content

Continuous Deployment of refs/heads/main to "copilotmigration" #36

Continuous Deployment of refs/heads/main to "copilotmigration"

Continuous Deployment of refs/heads/main to "copilotmigration" #36

name: Continuous Deployment
run-name: Continuous Deployment of ${{ github.ref }} to "copilotmigration"
on:
push:
branches: ["main"]
jobs:
Test:
uses: ./.github/workflows/test.yml
Build:
needs: Test
uses: ./.github/workflows/build.yml
DeployInfrastructure:
needs: Test
uses: ./.github/workflows/deploy_infrastructure.yml
with:
environment: "copilotmigration"
DeployApplication:
needs: [Build, DeployInfrastructure]
uses: ./.github/workflows/deploy_application.yml
with:
environment: "copilotmigration"