Skip to content

[EASI-2834] Text updates to CCW, GovDelivery, IPC, MDM, MIDS, and QV … #615

[EASI-2834] Text updates to CCW, GovDelivery, IPC, MDM, MIDS, and QV …

[EASI-2834] Text updates to CCW, GovDelivery, IPC, MDM, MIDS, and QV … #615

name: Deploy Pipeline
on:
push:
branches:
- main
concurrency:
group: deploy-pipeline
jobs:
run_tests:
uses: ./.github/workflows/run_tests.yml
secrets: inherit
build_frontend_assets:
strategy:
matrix:
env: [dev, test, impl, prod]
uses: ./.github/workflows/build_frontend_assets.yml
with:
env: ${{ matrix.env }}
secrets: inherit
build_application_images:
uses: ./.github/workflows/build_application_images.yml
needs: run_tests
secrets: inherit
deploy_dev:
needs: [build_application_images, build_frontend_assets]
uses: ./.github/workflows/deploy_to_environment.yml
with:
env: dev
secrets: inherit
deploy_test:
needs: [build_application_images, build_frontend_assets]
uses: ./.github/workflows/deploy_to_environment.yml
with:
env: test
secrets: inherit
deploy_impl:
needs: [deploy_dev, deploy_test]
uses: ./.github/workflows/deploy_to_environment.yml
with:
env: impl
secrets: inherit
deploy_prod:
needs: deploy_impl
uses: ./.github/workflows/deploy_to_environment.yml
with:
env: prod
secrets: inherit