Skip to content

Commit

Permalink
ci: add support for upper-case org/repo (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
powerman authored Sep 19, 2020
1 parent 7660841 commit f4bac33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/CI&CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
TAGS="latest"
fi
for TAG in $TAGS; do
IMAGE_TAG="ghcr.io/$GITHUB_REPOSITORY:$TAG"
IMAGE_TAG="ghcr.io/${GITHUB_REPOSITORY,,*}:$TAG"
docker tag "$(basename $(go list -m))" "$IMAGE_TAG"
docker push "$IMAGE_TAG"
done

0 comments on commit f4bac33

Please sign in to comment.