From f292debf03a124f006092f75f4891fe1b9bb128e Mon Sep 17 00:00:00 2001 From: Maru Newby Date: Thu, 13 Jun 2024 11:22:26 +0200 Subject: [PATCH] [antithesis] Fix image publication job by quoting default tag value --- .github/workflows/publish_antithesis_images.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish_antithesis_images.yml b/.github/workflows/publish_antithesis_images.yml index 32ecc3ae4c3..8363ad73e97 100644 --- a/.github/workflows/publish_antithesis_images.yml +++ b/.github/workflows/publish_antithesis_images.yml @@ -35,12 +35,12 @@ jobs: run: bash -x ./scripts/build_antithesis_images.sh env: IMAGE_PREFIX: ${{ env.REGISTRY }}/${{ env.REPOSITORY }} - TAG: ${{ github.events.inputs.image_tag || latest }} + TAG: ${{ github.events.inputs.image_tag || 'latest' }} TEST_SETUP: avalanchego - name: Build and push images for xsvm test setup run: bash -x ./scripts/build_antithesis_images.sh env: IMAGE_PREFIX: ${{ env.REGISTRY }}/${{ env.REPOSITORY }} - TAG: ${{ github.events.inputs.image_tag || latest }} + TAG: ${{ github.events.inputs.image_tag || 'latest' }} TEST_SETUP: xsvm