Skip to content

Commit 16bf8fb

Browse files
authored
fix(docker-releases): trim leading v from image names (#4567)
Fixes #4497.
1 parent bf5acc1 commit 16bf8fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ after_success:
3737
docker login --username=$DOCKER_HUB_USERNAME --password=$DOCKER_HUB_PASSWORD;
3838

3939
if [ ! -z "$TRAVIS_TAG" ]; then
40-
DOCKER_IMAGE_TAG=$TRAVIS_TAG;
40+
DOCKER_IMAGE_TAG=${TRAVIS_TAG#?};
4141
else
4242
DOCKER_IMAGE_TAG=unstable;
4343
fi;

0 commit comments

Comments
 (0)