Skip to content

Commit

Permalink
Fix pushing tag [5.5.2]
Browse files Browse the repository at this point in the history
  • Loading branch information
ldziedziul committed Oct 17, 2024
1 parent 3dc522e commit f92155f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tag_image_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
echo "HZ_VERSION=${HZ_VERSION}" >> $GITHUB_ENV
if [ -z "${{ env.RELEASE_VERSION }}" ]; then
RELEASE_VERSION=${{ env.HZ_VERSION }}
RELEASE_VERSION="${HZ_VERSION}"
else
RELEASE_VERSION=${{ env.RELEASE_VERSION }}
fi
Expand Down Expand Up @@ -219,7 +219,7 @@ jobs:
# OSS has no LTS releases
IS_LATEST_LTS=false
TAGS_TO_PUSH=$(get_tags_to_push ${{ env.RELEASE_VERSION }} "${{ env.SUFFIX }}" "${{ matrix.jdk }}" "$DEFAULT_JDK" "$IS_LATEST_LTS")
TAGS_TO_PUSH=$(get_tags_to_push "${{ env.RELEASE_VERSION }}" "${{ env.SUFFIX }}" "${{ matrix.jdk }}" "$DEFAULT_JDK" "$IS_LATEST_LTS")
echo "TAGS_TO_PUSH=$TAGS_TO_PUSH"
TAGS_ARG=""
for tag in ${TAGS_TO_PUSH[@]}
Expand Down

0 comments on commit f92155f

Please sign in to comment.