From 38bae20824fd0cfdc9e401cb5db75cae198fe381 Mon Sep 17 00:00:00 2001 From: CameronEYDS <53542131+cameron-eyds@users.noreply.github.com> Date: Wed, 8 Jan 2025 10:51:06 -0800 Subject: [PATCH] Assets UI cd updates (#2094) * Updated CD for Deployment Process * remove redundant file * quotation env names --- .github/workflows/ppr-ui-cd.yml | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ppr-ui-cd.yml b/.github/workflows/ppr-ui-cd.yml index d41e4ed3a..f79cb4a97 100644 --- a/.github/workflows/ppr-ui-cd.yml +++ b/.github/workflows/ppr-ui-cd.yml @@ -4,23 +4,29 @@ on: push: branches: - main + - feature* + - hotfix* + - release* paths: - "ppr-ui/**" workflow_dispatch: inputs: target: - description: "Environment" + description: "Deploy To" required: true type: choice options: - - dev - - test - - sandbox - - prod - tagname: - description: "Specify a previous version (git tag) to deploy" - required: false - default: "" + - "dev" + - "test" + - "sandbox" + - "prod" + redeploy: + description: "Redeploy Application" + required: true + type: choice + options: + - "false" + - "true" jobs: ppr-ui-cd: