fix: use correct docker registry and image name
Pull Request / unit-tests (pull_request) Failing after 9s
Pull Request / acceptance-tests (pull_request) Has been skipped
Pull Request / analyze-bump-type (pull_request) Has been skipped
Test / unit-tests (push) Failing after 8s

This commit is contained in:
2026-03-31 22:17:47 -07:00
parent 941d857feb
commit 3983049d2c
4 changed files with 47 additions and 73 deletions
+4 -4
View File
@@ -3,7 +3,7 @@
set -e
IMAGE_NAME="euchre-camp-ci"
IMAGE_NAME="euchre-camp-ci-runner"
TAG="${1:-latest}"
echo "Building CI runner image..."
@@ -37,8 +37,8 @@ echo "✅ CI image is ready to use!"
echo ""
echo "To use in GitHub Actions/Gitea Actions:"
echo " container:"
echo " image: ${IMAGE_NAME}:${TAG}"
echo " image: docker.notsosm.art/${IMAGE_NAME}:${TAG}"
echo ""
echo "To push to registry:"
echo " docker tag ${IMAGE_NAME}:${TAG} registry.example.com/${IMAGE_NAME}:${TAG}"
echo " docker push registry.example.com/${IMAGE_NAME}:${TAG}"
echo " docker tag ${IMAGE_NAME}:${TAG} docker.notsosm.art/${IMAGE_NAME}:${TAG}"
echo " docker push docker.notsosm.art/${IMAGE_NAME}:${TAG}"