fix(ci): add Docker Hub login to avoid rate limits on base image pulls

Self-hosted ARC runners share an IP — unauthenticated Docker Hub pulls
hit rate limits. Add Docker Hub login before build step.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
Deploy Debbie
2026-03-19 18:50:31 +00:00
parent 580864ac69
commit 66376f6a87
+6
View File
@@ -51,6 +51,12 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Log in to GHCR
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: docker/login-action@v3