forked from farhoodlabs/paperclip
fix(ci): make Docker Hub login non-blocking on dev build
The self-hosted runner has been hitting context-deadline timeouts to docker.io. The actual image push goes to GHCR, so the Docker Hub login is only there to avoid pull rate limits. Mark it continue-on-error so transient docker.io connectivity issues don't fail the whole build — base image pulls fall back to anonymous and proceed.
This commit is contained in:
@@ -24,6 +24,7 @@ jobs:
|
||||
run: echo "sha=$(echo ${{ github.sha }} | cut -c1-7)" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Login to Docker Hub
|
||||
continue-on-error: true
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
|
||||
Reference in New Issue
Block a user