From 34658e1dc4cda1921d0a17d4d487575cabf30642 Mon Sep 17 00:00:00 2001 From: Frank Greguska <89428916+frankinspace@users.noreply.github.com> Date: Wed, 24 Jul 2024 12:44:20 -0700 Subject: [PATCH] Update CICD pipeline --- .github/workflows/build-pipeline.yml | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build-pipeline.yml b/.github/workflows/build-pipeline.yml index 70dc4f6..109a369 100644 --- a/.github/workflows/build-pipeline.yml +++ b/.github/workflows/build-pipeline.yml @@ -14,18 +14,25 @@ on: # Allows you to run this workflow manually from the Actions tab workflow_dispatch: + inputs: + venue: + type: choice + description: Venue to deploy to + options: + - SIT + - UAT - # Only allow 1 execution of this workflow to be running at any given time per-branch. - concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true +# Only allow 1 execution of this workflow to be running at any given time per-branch. +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true - env: - POETRY_VERSION: "1.8.3" - PYTHON_VERSION: "3.10" - REGISTRY: ghcr.io - IMAGE_NAME: ${{ github.repository }} +env: + POETRY_VERSION: "1.8.3" + PYTHON_VERSION: "3.10" + REGISTRY: ghcr.io + IMAGE_NAME: ${{ github.repository }} jobs: build: