We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1a0c89 commit a9ac81cCopy full SHA for a9ac81c
scripts/build_and_push.sh
@@ -58,10 +58,10 @@ TAGS=" -t $TAG"
58
if [[ ! -z $PACKAGE_LATEST_VERSION ]] && [[ $PACKAGE_LATEST_VERSION = $PACKAGE_VERSION ]]; then
59
TAGS+=" -t $IMAGE_LOCATION:py${PUBLISH_TARGET}-LATEST"
60
61
- VERSION_SHORTER=$(echo $PACKAGE_VERSION | | cut -d"." -f1,2)
+ VERSION_SHORTER=$(echo $PACKAGE_VERSION | cut -d"." -f1,2)
62
TAGS+=" -t $IMAGE_LOCATION:py${PUBLISH_TARGET}-${VERSION_SHORTER}"
63
64
- VERSION_SHORTERER=$(echo $PACKAGE_VERSION | | cut -d"." -f1)
+ VERSION_SHORTERER=$(echo $PACKAGE_VERSION | cut -d"." -f1)
65
if [[ $VERSION_SHORTERER != "0" ]]; then
66
TAGS+=" -t $IMAGE_LOCATION:py${PUBLISH_TARGET}-${VERSION_SHORTERER}"
67
fi
0 commit comments