Merge pull request #9 from turb0c0w/trevor/testfix #8
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: STRR UI CD | ||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- "strr-web/**" | ||
workflow_dispatch: | ||
inputs: | ||
target: | ||
description: "Deploy To" | ||
required: true | ||
type: choice | ||
options: | ||
- dev | ||
- test | ||
- sandbox | ||
- prod | ||
jobs: | ||
strr-ui-cd: | ||
Check failure on line 22 in .github/workflows/strr-ui-cd.yaml GitHub Actions / STRR UI CDInvalid workflow file
|
||
uses: bcgov/bcregistry-sre/.github/workflows/frontend-cd.yaml@main | ||
with: | ||
target: ${{ inputs.target }} | ||
app_name: "strr-ui" | ||
working_directory: "./strr-web" | ||
secrets: | ||
WORKLOAD_IDENTIFY_POOLS_PROVIDER: ${{ secrets.WORKLOAD_IDENTIFY_POOLS_PROVIDER }} | ||
GCP_SERVICE_ACCOUNT: ${{ secrets.GCP_SERVICE_ACCOUNT }} |