ci: configure podman registries.conf for HTTP registry
Some checks failed
CI/CD / lint (push) Successful in 41s
CI/CD / test (push) Successful in 53s
CI/CD / typecheck (push) Successful in 10m53s
CI/CD / build (push) Successful in 1m22s
CI/CD / docker (push) Failing after 22s
CI/CD / publish-rpm (push) Successful in 38s
CI/CD / deploy (push) Has been skipped

The host uses podman (not Docker) — the socket mounted in job containers
is /run/podman/podman.sock. Podman reads /etc/containers/registries.conf
for insecure registry config, which takes effect immediately without any
daemon restart.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Michal
2026-03-09 03:46:11 +00:00
parent f934b2f84c
commit 64e7db4515

View File

@@ -142,14 +142,19 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [build] needs: [build]
if: github.ref == 'refs/heads/main' && github.event_name == 'push' if: github.ref == 'refs/heads/main' && github.event_name == 'push'
container:
options: --privileged -v /var/run/docker.sock:/var/run/docker.sock
env: env:
REGISTRY: ${{ env.GITEA_REGISTRY }} REGISTRY: ${{ env.GITEA_REGISTRY }}
OWNER: ${{ env.GITEA_OWNER }} OWNER: ${{ env.GITEA_OWNER }}
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Configure insecure registry
run: |
# Host uses podman — configure registries.conf for HTTP access
sudo mkdir -p /etc/containers
printf '[[registry]]\nlocation = "%s"\ninsecure = true\n' "${{ env.REGISTRY }}" \
| sudo tee /etc/containers/registries.conf
- name: Login to Gitea container registry - name: Login to Gitea container registry
run: | run: |
echo "${{ secrets.PACKAGES_TOKEN }}" | docker login \ echo "${{ secrets.PACKAGES_TOKEN }}" | docker login \