SAN Copy Updates (#1924) #190
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: ASSETS UI CD | ||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- "ppr-ui/**" | ||
workflow_dispatch: | ||
inputs: | ||
environment: | ||
description: "Environment" | ||
required: true | ||
type: choice | ||
options: | ||
- dev | ||
- test | ||
- sandbox | ||
- prod | ||
tagname: | ||
description: "Specify a previous version (git tag) to deploy" | ||
required: false | ||
default: "" | ||
jobs: | ||
ppr-ui-cd: | ||
Check failure on line 26 in .github/workflows/ppr-ui-cd.yml GitHub Actions / ASSETS UI CDInvalid workflow file
|
||
uses: bcgov/bcregistry-sre/.github/workflows/ui-cd-node20.yaml@main | ||
with: | ||
environment: ${{ inputs.environment }} | ||
tagname: ${{ inputs.tagname }} | ||
working_directory: "./ppr-ui" | ||
secrets: | ||
APP_NAME: "assets-ui" | ||
OP_CONNECT_URL: ${{ secrets.OP_CONNECT_URL }} | ||
OP_CONNECT_TOKEN: ${{ secrets.OP_CONNECT_TOKEN }} |