Skip to content

Commit

Permalink
#7: Added missing ARCH in docker tag
Browse files Browse the repository at this point in the history
  • Loading branch information
blackandred committed Nov 15, 2020
1 parent d4475e6 commit d7beb48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .rkd/makefile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ tasks:
if "refs" in tag:
if "refs/tags" in tag:
docker_tag = tag[len('refs/tags/'):]
docker_tag = tag[len('refs/tags/'):] + '-' + arch
else:
docker_tag = 'latest-dev-' + arch
elif tag:
docker_tag = arch + '-' + tag
docker_tag = tag + '-' + arch
image_name = '{repo}:{tag}'.format(tag=docker_tag, repo=repo)
Expand Down

0 comments on commit d7beb48

Please sign in to comment.