Skip to content

Commit

Permalink
[antithesis] Fix image publication job by quoting default tag value
Browse files Browse the repository at this point in the history
  • Loading branch information
marun committed Jun 13, 2024
1 parent d3a3739 commit f292deb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish_antithesis_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit f292deb

Please sign in to comment.