Skip to content

Commit

Permalink
fix: strip leading 'v' from dockerhub tags (#2360)
Browse files Browse the repository at this point in the history
Publish dockerhub tags as e.g. `0.7.5` rather than `v0.7.5`
  • Loading branch information
spypsy authored Sep 18, 2023
1 parent 8f5eb28 commit a4bb05c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build-system/scripts/deploy_dockerhub
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ if [[ "$COMMIT_TAG" == *"/"* ]]; then
COMMIT_TAG_VERSION="${COMMIT_TAG#*/}"
echo "Tag was made for: $REPO_NAME"
echo "Version: $COMMIT_TAG_VERSION"

# Check if REPO_NAME is equal to REPOSITORY
# Check if REPO_NAME is equal to REPOSITORY
if [ "$REPO_NAME" != "$REPOSITORY" ]; then
echo "REPO_NAME ($REPO_NAME) does not match REPOSITORY ($REPOSITORY). Exiting..."
exit 1
Expand All @@ -48,6 +48,8 @@ VERSION=$(npx semver $COMMIT_TAG_VERSION)
if [ -z "$VERSION" ]; then
echo "$COMMIT_TAG_VERSION is not a semantic version."
exit 1
else
COMMIT_TAG_VERSION=$VERSION
fi

echo "Deploying to dockerhub: $IMAGE_DEPLOY_URI"
Expand Down

0 comments on commit a4bb05c

Please sign in to comment.