Skip to content

Commit

Permalink
fix: image tags naming
Browse files Browse the repository at this point in the history
(otherwise we would get "requested access to the resource is denied")
  • Loading branch information
erikmd committed Jun 27, 2020
1 parent 50a3ebb commit 727db07
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.3
0.4.4
4 changes: 2 additions & 2 deletions gitlab_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ dk_push() {
# rest: tag1 tag2
for tag; do
( set -ex;
docker tag "$one_image" "$hub_repo/$tag";
docker push "$hub_repo/$tag" )
docker tag "$one_image" "$hub_repo:$tag";
docker push "$hub_repo:$tag" )
done
}

0 comments on commit 727db07

Please sign in to comment.