We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a repo myorg/myrepo and want to push an image ghcr.io/myorg/myrepo:1.0.0.
myorg/myrepo
ghcr.io/myorg/myrepo:1.0.0
However, specifying registry: ghcr.io and image: "" yields an error, since the resulting image is tagged with ghcr.io/myorg/myrepo/:1.0.0.
registry: ghcr.io
image: ""
ghcr.io/myorg/myrepo/:1.0.0
Setting a value for image will only append that to the repo name, e.g. image: "myrepo" yields the tag ghcr.io/myorg/myrepo/myrepo:1.0.0.
image
image: "myrepo"
ghcr.io/myorg/myrepo/myrepo:1.0.0
Is there a way to not set an image name, and keep it as repo root, specifically for ghcr?
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I have a repo
myorg/myrepo
and want to push an imageghcr.io/myorg/myrepo:1.0.0
.However, specifying
registry: ghcr.io
andimage: ""
yields an error, since the resulting image is tagged withghcr.io/myorg/myrepo/:1.0.0
.Setting a value for
image
will only append that to the repo name, e.g.image: "myrepo"
yields the tagghcr.io/myorg/myrepo/myrepo:1.0.0
.Is there a way to not set an image name, and keep it as repo root, specifically for ghcr?
The text was updated successfully, but these errors were encountered: