modified: .gitea/workflows/ docker-image.deploy.yml
Some checks failed
/ build-image (push) Failing after 18s

This commit is contained in:
2026-03-14 21:54:59 +00:00
parent 8af45a4f9a
commit 4301aa3625

View File

@@ -34,16 +34,8 @@ jobs:
- name: Authenticate to Gitea registry
run: |
mkdir -p ~/.docker
AUTH=$(echo -n "${{ secrets.REGISTRY_USERNAME }}:${{ secrets.REGISTRY_PASSWORD }}" | base64 -w 0)
cat > ~/.docker/config.json <<EOF
{
"auths": {
"git.limbosolutions.com": {
"auth": "$AUTH"
}
}
}
EOF
AUTH=$(printf "%s" "${{ secrets.REGISTRY_USERNAME }}:${{ secrets.REGISTRY_PASSWORD }}" | base64 -w 0)
printf '{"auths":{"git.limbosolutions.com":{"auth":"%s"}}}' "$AUTH" > ~/.docker/config.json
- name: Build and push image
run: |