remove superfluous outputs

This commit is contained in:
dev-docker 2021-05-21 06:51:04 +00:00
parent f46f79bd4e
commit 908898fd98
1 changed files with 0 additions and 5 deletions

View File

@ -32,18 +32,13 @@ echo "Docker repository: $docker_repo."
LATEST_RELEASE=`getVersionFromLatestRelease $source_repo`
echo "Latest release is: $LATEST_RELEASE."
echo "::set-output name=latest_release::$LATEST_RELEASE"
SEMVER=( ${LATEST_RELEASE//./ } )
MAJOR=${SEMVER[0]}
MINOR=${SEMVER[0]}.${SEMVER[1]}
PATCH=$LATEST_RELEASE
echo "::set-output name=major::$MAJOR"
echo "::set-output name=minor::$MINOR"
echo "::set-output name=patch::$PATCH"
echo "latest,$MAJOR,$MINOR,$PATCH" > .tags
echo "::set-output name=tags::$(cat .tags)"
RELEASE_URL=`getDownloadUrl`
echo "URL of release is: $RELEASE_URL."