Skip to content

Commit

Permalink
Fix tag determination script
Browse files Browse the repository at this point in the history
  • Loading branch information
cjcolvar authored Aug 14, 2023
1 parent 74e5018 commit 516b394
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/podman-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ jobs:
run: |
AVALON_VERSION=`script/avalon_image_tags.rb -t`
echo "AVALON_VERSION=${AVALON_VERSION}" >> "$GITHUB_OUTPUT"
echo "tags=`script/avalon_image_tags.rb --branch ${BRANCH} -a ${AVALON_VERSION}-dev` >> "$GITHUB_OUTPUT"
AVALON_TAGS=`script/avalon_image_tags.rb --branch ${BRANCH} -a ${AVALON_VERSION}-dev | awk 'gsub(","," ")'`
echo "tags=${AVALON_TAGS}" >> "$GITHUB_OUTPUT"
echo "Pushing with tags: ${AVALON_TAGS}"
- name: Develop Push To Dockerhub
if: ${{ env.IMAGE_TAG == 'develop' }}
uses: redhat-actions/push-to-registry@v2
Expand Down

0 comments on commit 516b394

Please sign in to comment.