Release 10.0.9. #6
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: Deploy to QA | ||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| workflow_dispatch: | ||
| jobs: | ||
| deploy: | ||
| if: ${{ vars.WORKFLOW_DEPLOY_QA_ENABLED == 'true' }} | ||
| uses: digitalbazaar/cadmv-qa-environment-tf/.github/workflows/deploy-app-reusable.yml@main | ||
|
Check failure on line 12 in .github/workflows/deploy-qa.yaml
|
||
| with: | ||
| # CUSTOMIZE THESE FOR YOUR APP: | ||
| app_name: opencred # Must match Terraform module name | ||
| image_repository: us-docker.pkg.dev/cadmv-qa-environment/app-images/opencred-platform | ||
| gcp_project_id: cadmv-qa-environment | ||
| auto_apply: true | ||
| # OPTIONAL: Custom Dockerfile location | ||
| # dockerfile_path: ./docker/Dockerfile | ||
| # build_context: . | ||
| secrets: | ||
| # Get these from the environment's TF state outputs | ||
| WIF_PROVIDER: ${{ secrets.WIF_PROVIDER }} | ||
| WIF_SERVICE_ACCOUNT: ${{ secrets.WIF_SERVICE_ACCOUNT }} | ||
| # This is a CADMV Dev team TF token | ||
| TFC_TOKEN: ${{ secrets.TFC_TOKEN }} | ||