From 4e7ce317323883bcb997146422f60b68179d2584 Mon Sep 17 00:00:00 2001 From: Rophy Tsai Date: Sat, 22 Aug 2026 11:12:02 +0000 Subject: [PATCH] build: remove Docker Hub description update step The peter-evans/dockerhub-description action requires admin-level token permissions we don't have, causing the build job to fail. --- .github/workflows/web-docker.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/web-docker.yml b/.github/workflows/web-docker.yml index 22b49925093..4ac5da1d878 100644 --- a/.github/workflows/web-docker.yml +++ b/.github/workflows/web-docker.yml @@ -86,12 +86,3 @@ jobs: labels: ${{ steps.meta.outputs.labels }} cache-from: type=gha cache-to: type=gha,mode=max - - - name: Update Docker Hub description - if: startsWith(github.ref, 'refs/tags/') - uses: peter-evans/dockerhub-description@v4 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - repository: ${{ env.IMAGE_NAME }} - readme-filepath: deploy/docker/webclient/README.md