Merge pull request #430 from Licsber/master

Bug fix :  repository name must be lowercase
This commit is contained in:
Mike Coutermarsh
2020-03-21 13:20:31 -07:00
committed by GitHub
+3
View File
@@ -56,6 +56,9 @@ jobs:
- name: Push image
run: |
IMAGE_ID=docker.pkg.github.com/${{ github.repository }}/$IMAGE_NAME
# Change all uppercase to lowercase
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
# Strip git ref prefix from version
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')