Update package versions in Strata app (#967) #35
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: STRR HOST PM UI CD | ||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| - feature* | ||
| - hotfix* | ||
| - release* | ||
| paths: | ||
| - "strr-host-pm-web/**" | ||
| workflow_dispatch: | ||
| inputs: | ||
| target: | ||
| description: "Deploy To" | ||
| required: true | ||
| type: choice | ||
| options: | ||
| - "dev" | ||
| - "test" | ||
| - "uat" | ||
| - "sandbox" | ||
| - "prod" | ||
| redeploy: | ||
| description: "Redeploy Application" | ||
| required: true | ||
| type: choice | ||
| options: | ||
| - "false" | ||
| - "true" | ||
| jobs: | ||
| strr-host-pm-ui-cd: | ||
|
Check failure on line 33 in .github/workflows/strr-host-pm-ui-cd.yaml
|
||
| uses: bcgov/bcregistry-sre/.github/workflows/frontend-cd.yaml@main | ||
| with: | ||
| target: ${{ inputs.target }} | ||
| app_name: "strr-hosts" | ||
| working_directory: "./strr-host-pm-web" | ||
| node_version: 20 | ||
| pnpm_version: 10.0.0 | ||
| redeploy: ${{ inputs.redeploy }} | ||
| secrets: | ||
| WORKLOAD_IDENTIFY_POOLS_PROVIDER: ${{ secrets.WORKLOAD_IDENTIFY_POOLS_PROVIDER }} | ||
| GCP_SERVICE_ACCOUNT: ${{ secrets.GCP_SERVICE_ACCOUNT }} | ||