Deploy to dev6 by @alismx #1305
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 Dev | ||
run-name: Deploy to ${{ inputs.deploy_env }} by @${{ github.actor }} | ||
on: | ||
workflow_dispatch: | ||
matrix: | ||
fail-fast: false | ||
deploy_env: [dev6, dev7] | ||
inputs: | ||
deploy_env: | ||
description: 'The environment to deploy to' | ||
required: true | ||
type: choice | ||
options: | ||
- "" | ||
- dev | ||
- dev2 | ||
- dev3 | ||
- dev4 | ||
- dev5 | ||
- dev6 | ||
- dev7 | ||
- pentest | ||
env: | ||
DEPLOY_ENV: ${{ matrix.deploy_env }} | ||
Check failure on line 26 in .github/workflows/deployDev.yml GitHub Actions / Deploy DevInvalid workflow file
|
||
NODE_VERSION: 18 | ||
concurrency: | ||
group: ${{ inputs.deploy_env }}-deploy | ||
cancel-in-progress: false | ||
jobs: | ||
build_docker: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Build and Push backend | ||
uses: ./.github/actions/build-and-push | ||
with: | ||
acr_registry: ${{ secrets.ACR_REPO_URL }} | ||
acr_username: ${{ secrets.ACR_ADMIN_USERNAME }} | ||
acr_password: ${{ secrets.ACR_ADMIN_PASWORD }} | ||
build_frontend: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./.github/actions/build-frontend | ||
name: Build front-end application | ||
with: | ||
azure_creds: ${{ secrets.AZURE_CREDENTIALS }} | ||
client_tarball: ./client.tgz | ||
deploy_env: ${{ inputs.deploy_env }} | ||
smarty_streets_key: ${{ secrets.SMARTY_STREETS_KEY }} | ||
okta_enabled: true | ||
okta_url: https://hhs-prime.oktapreview.com | ||
okta_client_id: ${{ vars.OKTA_CLIENT_ID }} | ||
prerelease_backend: | ||
runs-on: ubuntu-latest | ||
needs: [build_frontend, build_docker] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./.github/actions/tf-deploy | ||
name: Deploy with Terraform | ||
with: | ||
azure_creds: ${{ secrets.AZURE_CREDENTIALS }} | ||
deploy_env: ${{ inputs.deploy_env }} | ||
terraform_arm_client_id: ${{ secrets.TERRAFORM_ARM_CLIENT_ID }} | ||
terraform_arm_client_secret: ${{ secrets.TERRAFORM_ARM_CLIENT_SECRET }} | ||
terraform_arm_subscription_id: ${{ secrets.TERRAFORM_ARM_SUBSCRIPTION_ID }} | ||
terraform_arm_tenant_id: ${{ secrets.TERRAFORM_ARM_TENANT_ID }} | ||
okta_api_token: ${{ secrets.OKTA_API_TOKEN_NONPROD }} | ||
- uses: ./.github/actions/stg-wait-for-slot-commit | ||
name: Wait for correct commit to be deployed in staging slot | ||
timeout-minutes: 5 | ||
with: | ||
deploy_env: ${{ inputs.deploy_env }} | ||
- uses: ./.github/actions/stg-wait-for-slot-readiness | ||
name: Wait for staging deploy to be ready | ||
timeout-minutes: 1 | ||
with: | ||
deploy_env: ${{ inputs.deploy_env }} | ||
deploy: | ||
runs-on: ubuntu-latest | ||
environment: | ||
name: ${{ inputs.deploy_env }} | ||
url: https://${{ inputs.deploy_env }}.simplereport.gov | ||
needs: [prerelease_backend] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Promote and deploy | ||
uses: ./.github/actions/deploy-application | ||
with: | ||
azure_creds: ${{ secrets.AZURE_CREDENTIALS }} | ||
client_tarball: client.tgz | ||
deploy_env: ${{ inputs.deploy_env }} |