From 9422df2737e1c6f04151edcf24ad52bf3a7f9e44 Mon Sep 17 00:00:00 2001 From: Eugene Brodsky Date: Tue, 3 Sep 2024 13:42:40 -0400 Subject: [PATCH] feat(ci): enable a checkbox to push the container image when manually building via workflow dispatch --- .github/workflows/build-container.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build-container.yml b/.github/workflows/build-container.yml index a8bfaa540c1..d107090774b 100644 --- a/.github/workflows/build-container.yml +++ b/.github/workflows/build-container.yml @@ -13,6 +13,12 @@ on: tags: - 'v*.*.*' workflow_dispatch: + inputs: + push-to-registry: + description: Push the built image to the container registry + required: false + type: boolean + default: false permissions: contents: write