Skip to content

Build(deps): bump github.com/go-openapi/swag from 0.22.3 to 0.22.4 (#… #590

Build(deps): bump github.com/go-openapi/swag from 0.22.3 to 0.22.4 (#…

Build(deps): bump github.com/go-openapi/swag from 0.22.3 to 0.22.4 (#… #590

name: Deploy Pipeline
on:
push:
branches:
- main
concurrency:
group: deploy-pipeline
jobs:
run_tests:
uses: ./.github/workflows/run_tests.yml
secrets: inherit
build_application_images:
uses: ./.github/workflows/build_application_images.yml
needs: run_tests
secrets: inherit
deploy_dev:
needs: build_application_images
uses: ./.github/workflows/deploy_to_environment.yml
with:
env: dev
secrets: inherit
deploy_test:
needs: build_application_images
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