Skip to content

Commit

Permalink
Fix pushing tag
Browse files Browse the repository at this point in the history
  • Loading branch information
ldziedziul committed Jul 26, 2024
1 parent f30ce7a commit c5a27bf
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 @@ -90,7 +90,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 @@ -197,7 +197,7 @@ jobs:
IMAGE_NAME=${{ env.DOCKER_ORG }}/hazelcast
DEFAULT_JDK="$(get_default_jdk $DOCKER_DIR)"
TAGS_TO_PUSH=$(get_tags_to_push ${{ env.RELEASE_VERSION }} "${{ env.SUFFIX }}" "${{ matrix.jdk }}" "$DEFAULT_JDK")
TAGS_TO_PUSH=$(get_tags_to_push "${{ env.RELEASE_VERSION }}" "${{ env.SUFFIX }}" "${{ matrix.jdk }}" "$DEFAULT_JDK")
echo "TAGS_TO_PUSH=$TAGS_TO_PUSH"
TAGS_ARG=""
for tag in ${TAGS_TO_PUSH[@]}
Expand Down

0 comments on commit c5a27bf

Please sign in to comment.