fix(release): push image to ghcr.io/gen0sec/synapse-operator (was non-existent ghcr.io/arxignis)#21
Merged
Merged
Conversation
The Release workflow pushed to ghcr.io/arxignis/moat-operator, but
'arxignis' is not a GitHub org or user, and the workflow authenticates
with ${{ secrets.GITHUB_TOKEN }} (repo gen0sec/synapse-operator,
packages: write) which can only push under owner 'gen0sec'. Result:
'failed to push ... denied: not_found: owner not found' (v0.1.0
release, run 26031328825). Go build was fine.
MOAT_OPERATOR_REGISTRY_IMAGE is the single source (lines 39/101/150+
all reference it), so this one env change fixes every push/merge/
inspect target. Image now matches the repo: gen0sec/synapse-operator.
pigri
added a commit
that referenced
this pull request
May 19, 2026
…e-operator Remove the arxignis-specific Helm wiring (export ARX_KEY + --set synapse.synapse.arxignis.apiKey) and replace placeholder image refs (ghcr.io/<org>/ , ghcr.io/example/) with the real published image ghcr.io/gen0sec/synapse-operator, matching the release fix (#21). Docs only.
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.
Problem
The
Releaseworkflow (tagv0.1.0, run 26031328825) failed at the image push:release.yaml:15setMOAT_OPERATOR_REGISTRY_IMAGE: ghcr.io/arxignis/moat-operator, but:arxignisis not a GitHub org or user (/orgs/arxignis&/users/arxignis→ 404) — no such ghcr owner namespace.${{ secrets.GITHUB_TOKEN }}(repogen0sec/synapse-operator,packages: write), which can only push packages under ownergen0sec.The Go build itself succeeded; only the push target was wrong.
Fix
One line:
MOAT_OPERATOR_REGISTRY_IMAGE→ghcr.io/gen0sec/synapse-operator. It's the single source of truth (lines 39/101/150/151/155 all reference${{ env.MOAT_OPERATOR_REGISTRY_IMAGE }}), so this fixes every push/merge/inspect target. Image now matches the repo and is pushable by the repo'sGITHUB_TOKEN.Re-release note
v0.1.0points at the PR #20 merge commit (595aaa4), whoserelease.yamlstill has the bug. After this merges tomain, re-release by deleting + recreating thev0.1.0tag on the newmainHEAD (or taggingv0.1.1); re-running the old run won't help (it builds the tagged commit's workflow).