Namex NR Day Job CD #86
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: Namex NR Day Job CD | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "jobs/nr-day-job/**" | |
| workflow_dispatch: | |
| inputs: | |
| target: | |
| description: "Deploy To" | |
| required: true | |
| type: choice | |
| options: | |
| - dev | |
| - test | |
| - sandbox | |
| - prod | |
| redeploy: | |
| description: "Redeploy Application" | |
| required: true | |
| type: choice | |
| options: | |
| - "false" | |
| - "true" | |
| jobs: | |
| nr-day-job-cd: | |
| uses: bcgov/bcregistry-sre/.github/workflows/backend-job-cd.yaml@main | |
| with: | |
| target: ${{ inputs.target }} | |
| app_name: "nr-day-job" | |
| working_directory: "./jobs/nr-day-job" | |
| redeploy: ${{ inputs.redeploy }} | |
| secrets: | |
| WORKLOAD_IDENTIFY_POOLS_PROVIDER: ${{ secrets.WORKLOAD_IDENTIFY_POOLS_PROVIDER }} | |
| GCP_SERVICE_ACCOUNT: ${{ secrets.GCP_SERVICE_ACCOUNT }} |