Skip to content

Commit 69d3da1

Browse files
committed
k8s deployments choke on repository URLs with uppercase letters
1 parent f98e255 commit 69d3da1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/dockerpublish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
echo "::set-env name=VERSION::$VERSION"
9393
9494
# Update image version in application manifest
95-
sed -Ei "s,(- image: docker.pkg.github.com)(.*),\1/${{ github.repository }}/$IMAGE_NAME:$VERSION," k8s/app.yaml
95+
sed -Ei "s,(- image: docker.pkg.github.com)(.*),\1/${GITHUB_REPOSITORY,,}/$IMAGE_NAME:$VERSION," k8s/app.yaml
9696
9797
# Show updated manifest file
9898
cat k8s/app.yaml

0 commit comments

Comments
 (0)