1
0
Fork 0
mirror of https://github.com/aevea/action-kaniko.git synced 2025-01-31 06:09:39 +01:00

fix: Add explicit registry domain for GitHub Package Registry

This commit is contained in:
Alex Viscreanu 2020-02-16 23:00:45 +01:00
parent 47b714c8dd
commit e53e7fa149
No known key found for this signature in database
GPG key ID: 60A6BD7F046C850B

View file

@ -27,7 +27,7 @@ if [ "$REGISTRY" == "docker.pkg.github.com" ]; then
export IMAGE="$GITHUB_REPOSITORY/$IMAGE" export IMAGE="$GITHUB_REPOSITORY/$IMAGE"
if [ ! -z $INPUT_CACHE_REGISTRY ]; then if [ ! -z $INPUT_CACHE_REGISTRY ]; then
export INPUT_CACHE_REGISTRY="$GITHUB_REPOSITORY/$INPUT_CACHE_REGISTRY" export INPUT_CACHE_REGISTRY="$REGISTRY/$GITHUB_REPOSITORY/$INPUT_CACHE_REGISTRY"
fi fi
fi fi