Skip to content

Commit e1338f6

Browse files
committed
ci: Make Docker Hub description update non-blocking
- Add continue-on-error: true to Docker Hub description step - Add timeout-minutes: 5 to prevent hanging - Docker Hub API timeouts won't block the build - Docker images are already built and pushed successfully The description update is cosmetic - if it fails due to transient Docker Hub API issues, it won't prevent the build from completing.
1 parent 9286931 commit e1338f6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/docker-build-dockerhub.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,8 @@ jobs:
201201
- name: Update Docker Hub Description
202202
if: github.event_name == 'push'
203203
uses: peter-evans/dockerhub-description@v5
204+
continue-on-error: true
205+
timeout-minutes: 5
204206
with:
205207
username: ${{ secrets.DOCKERHUB_USERNAME }}
206208
password: ${{ secrets.DOCKERHUB_TOKEN }}

0 commit comments

Comments
 (0)