README.md offers the container as the try-it-without-installing path:
docker run --rm -v "$PWD":/work \
-e ZORP_BASE_URL -e ZORP_MODEL -e ZORP_API_KEY \
ghcr.io/aviskaar/zorp "<your task>"
Anonymously, that fails:
$ docker logout ghcr.io && docker pull ghcr.io/aviskaar/zorp:latest
Error response from daemon: error from registry: unauthorized
The manifest API agrees: HTTP 403 for an anonymous token.
The image builds and publishes fine (the Image workflow is green and
smoke-tests --version on both arches). It is only the package's
visibility, which defaults to private even when the repository is public.
Fix: set the package to public at
https://github.com/orgs/aviskaar/packages/container/zorp/settings
This needs admin:packages on a human account and cannot be done from
the REST API, which has no visibility endpoint for packages.
Until then the README carries a note pointing here. Closing this issue
means deleting that note.
README.mdoffers the container as the try-it-without-installing path:Anonymously, that fails:
The manifest API agrees:
HTTP 403for an anonymous token.The image builds and publishes fine (the
Imageworkflow is green andsmoke-tests
--versionon both arches). It is only the package'svisibility, which defaults to private even when the repository is public.
Fix: set the package to public at
https://github.com/orgs/aviskaar/packages/container/zorp/settings
This needs
admin:packageson a human account and cannot be done fromthe REST API, which has no visibility endpoint for packages.
Until then the README carries a note pointing here. Closing this issue
means deleting that note.