Merge pull request #4548 from GSA-TTS/main #114
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Deploy to Production Environment | |
on: | |
push: | |
tags: | |
- v1.* | |
jobs: | |
testing: | |
uses: ./.github/workflows/testing-from-ghcr.yml | |
secrets: inherit | |
linting: | |
uses: ./.github/workflows/linting.yml | |
secrets: inherit | |
deploy-infrastructure-production: | |
name: Deploy infrastructure (production) | |
needs: | |
- testing | |
uses: ./.github/workflows/terraform-apply-env.yml | |
with: | |
environment: "production" | |
autoapprove: false | |
secrets: inherit | |
new-relic-record: | |
name: Record deployment to New Relic | |
needs: | |
- deploy-infrastructure-production | |
uses: ./.github/workflows/new-relic-deployment.yml | |
with: | |
environment: "production" | |
secrets: inherit | |
deploy-production: | |
name: Deploy application | |
needs: | |
- deploy-infrastructure-production | |
uses: ./.github/workflows/deploy-application.yml | |
with: | |
environment: "production" | |
secrets: inherit | |
scan-production-post-deploy: | |
name: Zap Scan | |
needs: | |
- deploy-production | |
uses: ./.github/workflows/zap-scan.yml | |
with: | |
url: "https://app.fac.gov/" |