From b0df632b5b406c2e0a45c757790fbf8a42db42c1 Mon Sep 17 00:00:00 2001 From: Nils Vu Date: Wed, 20 Mar 2024 11:40:51 -0700 Subject: [PATCH] Fix workflow to deploy containers on release --- .github/workflows/DemoContainer.yaml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/DemoContainer.yaml b/.github/workflows/DemoContainer.yaml index 712e1334ecca..4cecade81beb 100644 --- a/.github/workflows/DemoContainer.yaml +++ b/.github/workflows/DemoContainer.yaml @@ -7,17 +7,22 @@ on: workflow_dispatch: inputs: image_name: - description: > - Image name to push to DockerHub - required: true + description: Image name to push to DockerHub default: 'sxscollaboration/spectre' build_arm: type: boolean - description: > - Build ARM container in addition to x86_64 + description: Build ARM container in addition to x86_64 default: true workflow_call: + inputs: + image_name: + description: Image name to push to DockerHub + default: 'sxscollaboration/spectre' + build_arm: + type: boolean + description: Build ARM container in addition to x86_64 + default: true secrets: DOCKERHUB_USERNAME: required: true