fix(ci): publish docker image under hyperledger-identus namespace - #18
Merged
Conversation
The published image ghcr.io/hyperledger/identus-keycloak-plugins became unpullable: its tag index exists but every platform manifest it references returns HTTP 404. The package is orphaned — API shows "repo": null — it lives under the legacy `hyperledger` org and is not linked to this repository (hyperledger-identus/keycloak-plugins), so GHCR garbage-collected its blobs. All three tags (0.2.0, 0.1.0, 0.1.0-snapshot.test.1) are affected the same way. This is blocking the identus cloud-agent integration tests, which pull the image for OID4VCI scenarios. Fix: publish under the repo-linked namespace ghcr.io/hyperledger-identus/keycloak-plugins, which GitHub auto-links to this repository (names match) so it can no longer be orphaned or garbage-collected. The next release will publish 0.2.1 there. Also updates the README examples to the new namespace/version. Signed-off-by: Pat Losoponkul <patextreme@hotmail.com>
This was referenced Jul 28, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
ghcr.io/hyperledger/identus-keycloak-pluginsis broken and can't be pulled — its tag index exists but every platform manifest it references returns HTTP 404:```
$ docker pull ghcr.io/hyperledger/identus-keycloak-plugins:0.2.0
failed to copy: ... manifests/sha256:32aa9fd5... not found: not found
```
Root cause: the package is orphaned. The Packages API returns `"repo": null` — it lives under the legacy `hyperledger` org and is not linked to this repository (`hyperledger-identus/keycloak-plugins`), so GHCR garbage-collected its image blobs (all 3 tags affected). This is blocking every PR on hyperledger-identus/cloud-agent (its integration tests pull this image).
Fix
Publish under the repo-linked namespace `ghcr.io/hyperledger-identus/keycloak-plugins`. Because the package name matches this repo, GitHub auto-links it → no orphaning → no future GC. The change is the semantic-release `prepareCmd` buildx push target in `package.json`. README examples updated too.
Committed as `fix:` so the next semantic-release run cuts a patch release (0.2.1) and publishes a fresh, working image to the new namespace.
Release flow (after merge)
`release.yml` only runs on `workflow_dispatch`/`workflow_call` (not on push), so after merge:
Notes for reviewer