Skip to content

Commit

Permalink
Merge pull request #1 from flownative/task/deprecated-set-output-comm…
Browse files Browse the repository at this point in the history
…ands

Drop deprecated set-output commands
  • Loading branch information
kdambekalns authored May 22, 2023
2 parents 950b755 + cc62351 commit e73fdc6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ if [ "${INPUT_TAG_CUSTOM}" != "" ]; then
docker push "${INPUT_TARGET_IMAGE_NAME}:${INPUT_TAG_CUSTOM}"
fi

echo "::set-output name=image_tag::${TAG}"
echo "::set-output name=image_tag_major::${DOCKER_IMAGE_TAG_MAJOR}"
echo "::set-output name=image_tag_minor::${DOCKER_IMAGE_TAG_MINOR}"
echo "::set-output name=image_tag_patch::${DOCKER_IMAGE_TAG_PATCH}"
echo "::set-output name=image_tag_patch_with_pre_release::${DOCKER_IMAGE_TAG_PATCH_WITH_PRE_RELEASE}"
echo "image_tag=${TAG}" >> $GITHUB_OUTPUT
echo "image_tag_major=${DOCKER_IMAGE_TAG_MAJOR}" >> $GITHUB_OUTPUT
echo "image_tag_minor={DOCKER_IMAGE_TAG_MINOR}" >> $GITHUB_OUTPUT
echo "image_tag_patch={DOCKER_IMAGE_TAG_PATCH}" >> $GITHUB_OUTPUT
echo "image_tag_patch_with_pre_release={DOCKER_IMAGE_TAG_PATCH_WITH_PRE_RELEASE}" >> $GITHUB_OUTPUT

0 comments on commit e73fdc6

Please sign in to comment.