Add connectivity test before logging into the Docker registry
Some checks failed
🤓 Individual Runners / Build 🐳 windows-mono (push) Failing after 1m37s

This commit is contained in:
Guillaume Langlois 2026-02-02 20:13:07 -05:00
parent b789b9a0cb
commit 2cf28ee7cc

View File

@ -51,7 +51,12 @@ jobs:
- uses: actions/checkout@v4
- name: Login to Gitea Docker Registry
- name: Test connectivity
run: |
echo "Testing connection to registry..."
time curl -v https://${{ env.DOCKER_REGISTRY_DOMAIN }}/v2/ || true
- name: Login to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.DOCKER_REGISTRY_DOMAIN }}