[WD] Deploy to UR Environment #23
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: "[WD] Deploy to UR Environment" | |
on: | |
workflow_dispatch: | |
inputs: | |
tag_to_deploy: | |
description: 'Tag to deploy to ur environment' | |
required: true | |
type: string | |
permissions: | |
id-token: write | |
contents: write | |
security-events: write | |
pull-requests: write | |
actions: none | |
checks: none | |
deployments: none | |
issues: write | |
packages: none | |
repository-projects: none | |
statuses: none | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
docker_build_scan_push: | |
name: Docker Build, Scan and Push | |
uses: ./.github/workflows/docker_job.yml | |
with: | |
tag: ur-${{ inputs.tag_to_deploy }} | |
checkout_tag : ${{ inputs.tag_to_deploy }} | |
ui_tests_image: | |
name: Run Cypress UI Tests On ur Images | |
uses: ./.github/workflows/ui_test_job.yml | |
needs: [docker_build_scan_push] | |
with: | |
run_against_image: true | |
tag: ur-${{ inputs.tag_to_deploy}} | |
checkout_tag: ${{ inputs.tag_to_deploy}} | |
specs: 'cypress/e2e/**/*.js' | |
secrets: | |
aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID_ACTIONS }} | |
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY_ACTIONS }} | |
cypress_record_key: ${{ secrets.CYPRESS_RECORD_KEY }} | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
deploy: | |
name: ur Environment Deploy | |
needs: [ui_tests_image] | |
uses: ./.github/workflows/terraform_environment_job.yml | |
with: | |
workspace_name: ur | |
version_tag: ur-${{ inputs.tag_to_deploy}} | |
checkout_tag: ${{ inputs.tag_to_deploy}} | |
secrets: | |
aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID_ACTIONS }} | |
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY_ACTIONS }} | |
ssh_deploy_key: ${{ secrets.OPG_MODERNISING_LPA_DEPLOY_KEY_PRIVATE_KEY }} | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
pagerduty_api_key: ${{ secrets.PAGERDUTY_API_KEY }} | |
ui_tests_env: | |
name: Run Cypress UI Tests On ur Environment | |
uses: ./.github/workflows/ui_test_job.yml | |
needs: [deploy] | |
with: | |
run_against_image: false | |
base_url: "https://${{ needs.deploy.outputs.url }}" | |
tag: ur-${{ inputs.tag_to_deploy}} | |
checkout_tag: ${{ inputs.tag_to_deploy}} | |
environment_config_json: ${{ needs.deploy.outputs.environment_config_json }} | |
specs: 'cypress/smoke/*.cy.js' | |
secrets: | |
aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID_ACTIONS }} | |
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY_ACTIONS }} | |
cypress_record_key: ${{ secrets.CYPRESS_RECORD_KEY }} | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
always_remove_ingress: | |
name: Remove CI ingress from ur environment | |
if: always() | |
uses: ./.github/workflows/remove_ingress_job.yml | |
needs: [ui_tests_env, deploy] | |
with: | |
environment_config_json: ${{ needs.deploy.outputs.environment_config_json }} | |
secrets: | |
aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID_ACTIONS }} | |
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY_ACTIONS }} | |
end_of_deployment_workflow: | |
name: End of ur Deployment Workflow | |
runs-on: ubuntu-latest | |
environment: | |
name: "ur" | |
url: "https://${{ needs.deploy.outputs.url }}" | |
needs: [ui_tests_env] | |
steps: | |
- name: End of ur Deployment Workflow | |
run: | | |
echo "${{ needs.deploy.outputs.terraform_workspace_name }} environment tested, built and deployed" | |
echo "Tag Deployed: ${{ needs.deploy.outputs.terraform_container_version }}" | |
echo "URL: https://${{ needs.deploy.outputs.url }}" |