Commit bf66e80
Fix red CI: lowercase GHCR tags; stop gating release check on local Tier A (#6)
Three workflows were failing on main.
Build GeneCluster runner image / Build GeneCluster Superpowers image:
Both derived IMAGE_NAME from ${{ github.repository_owner }} ("BioSymphony"),
producing tags like ghcr.io/BioSymphony/... which GHCR rejects with
"repository name must be lowercase". Compute IMAGE_NAME in a new
"Normalize image name" step via ${OWNER,,}, and lowercase the Superpowers
DEFAULT_BASE_IMAGE owner the same way so it can pull the runner base image.
Public release check (runs on every push + PR):
make public-audit -> capability ran capability_probe.py, which exits 1
unless Tier A local tooling (PyMOL/ChimeraX GUIs, conda, the ValarTTS
server on :8787) is present. A hosted runner never has these, so the gate
could not pass in CI. Add a --no-fail (report-only) flag to the probe and
pass it from the `capability` Make target; direct invocation without the
flag keeps the exit-1 local-readiness signal.
Verified: `make public-release-check` now exits 0 locally (101 unit tests
pass, all audits clean). The image-build workflows trigger on push to main
(and their own paths), so they re-run on merge.
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>1 parent b1f02a8 commit bf66e80
4 files changed
Lines changed: 30 additions & 4 deletions
File tree
- .github/workflows
- skills/biosymphony/scripts
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
22 | | - | |
| 22 | + | |
| 23 | + | |
23 | 24 | | |
24 | 25 | | |
25 | 26 | | |
| |||
29 | 30 | | |
30 | 31 | | |
31 | 32 | | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
32 | 39 | | |
33 | 40 | | |
34 | 41 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
39 | 39 | | |
40 | 40 | | |
41 | 41 | | |
42 | | - | |
| 42 | + | |
| 43 | + | |
43 | 44 | | |
44 | 45 | | |
45 | 46 | | |
| |||
49 | 50 | | |
50 | 51 | | |
51 | 52 | | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
52 | 59 | | |
53 | 60 | | |
54 | 61 | | |
| |||
79 | 86 | | |
80 | 87 | | |
81 | 88 | | |
82 | | - | |
| 89 | + | |
83 | 90 | | |
84 | 91 | | |
85 | 92 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | | - | |
| 25 | + | |
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
92 | 92 | | |
93 | 93 | | |
94 | 94 | | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
95 | 105 | | |
96 | 106 | | |
97 | 107 | | |
| |||
173 | 183 | | |
174 | 184 | | |
175 | 185 | | |
| 186 | + | |
| 187 | + | |
176 | 188 | | |
177 | 189 | | |
178 | 190 | | |
| |||
0 commit comments