Skip to content

Continuous Deployment of refs/heads/MAV-745_automatically_deploy_infrastructure_changes to "copilotmigration" #31

Continuous Deployment of refs/heads/MAV-745_automatically_deploy_infrastructure_changes to "copilotmigration"

Continuous Deployment of refs/heads/MAV-745_automatically_deploy_infrastructure_changes to "copilotmigration" #31

name: Continuous Deployment
run-name: Continuous Deployment of ${{ github.ref }} to "copilotmigration"
on:
push:
branches: ["main", "MAV-745_automatically_deploy_infrastructure_changes"]
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"