This repository was archived by the owner on Feb 7, 2025. It is now read-only.
Update patch dependencies to v7.2.2 (#1198) #759
This file contains hidden or 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: CI/CD | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '*.md' | |
workflow_dispatch: | |
jobs: | |
ci: | |
name: CI | |
uses: ./.github/workflows/ci.yml | |
secrets: inherit | |
terraform-deploy: | |
name: Staging Infrastructure Deploy | |
needs: ci | |
uses: ./.github/workflows/terraform-deploy_reusable.yml | |
with: | |
ENVIRONMENT: stg | |
TERRAFORM_DIRECTORY: operations/environments/stg | |
secrets: | |
AZURE_CLIENT_ID: ${{ secrets.AZURE_CDC_CLIENT_ID }} | |
AZURE_TENANT_ID: ${{ secrets.AZURE_CDC_TENANT_ID }} | |
AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_CDC_DMZ_C1_SUBSCRIPTION_ID }} | |
VPN_TLS_KEY: ${{ secrets.VPN_TLS_KEY }} | |
VPN_CA_CERTIFICATE: ${{ secrets.VPN_CA_CERTIFICATE }} | |
VPN_GITHUB_CERTIFICATE: ${{ secrets.VPN_GITHUB_CERTIFICATE}} | |
VPN_GITHUB_SECRET_KEY: ${{ secrets.VPN_GITHUB_SECRET_KEY }} | |
TERRAFORM_APPLY_PARAMETERS: -var="alert_slack_email=${{ secrets.ALERT_SLACK_EMAIL }}" | |
staging-deploy: | |
name: Staging Application Deploy | |
needs: terraform-deploy | |
uses: ./.github/workflows/deploy_reusable.yml | |
with: | |
ENVIRONMENT: stg | |
REPO: trusted-intermediary-router | |
REPO_DOCS: trusted-intermediary-docs | |
APP: ${{ needs.terraform-deploy.outputs.APP }} | |
REGISTRY: ${{ needs.terraform-deploy.outputs.REGISTRY }} | |
secrets: | |
AZURE_CLIENT_ID: ${{ secrets.AZURE_CDC_CLIENT_ID }} | |
AZURE_TENANT_ID: ${{ secrets.AZURE_CDC_TENANT_ID }} | |
AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_CDC_DMZ_C1_SUBSCRIPTION_ID }} |