File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -211,6 +211,20 @@ jobs:
211211 go-version-file : go.mod
212212 cache : true
213213
214+ - name : Debug registries.conf
215+ run : |
216+ echo "=== /etc/containers/registries.conf ==="
217+ cat /etc/containers/registries.conf 2>/dev/null || echo "(not found)"
218+ echo "=== /etc/containers/registries.conf.d/ ==="
219+ ls -la /etc/containers/registries.conf.d/ 2>/dev/null || echo "(dir not found)"
220+ for f in /etc/containers/registries.conf.d/*; do
221+ [ -f "$f" ] && echo "--- $f ---" && cat "$f"
222+ done
223+ echo "=== ~/.config/containers/registries.conf ==="
224+ cat ~/.config/containers/registries.conf 2>/dev/null || echo "(not found)"
225+ echo "=== podman version ==="
226+ podman version 2>/dev/null || echo "(podman not found)"
227+
214228 - name : test
215229 run : make ci-test
216230
You can’t perform that action at this time.
0 commit comments