From 0d99789938b78ac3db3dbe540c20915397bf1e65 Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Sat, 27 Nov 2021 10:59:07 +0100 Subject: [PATCH] ci: Disable update of dockerhub description on release This is not allowed via personal access token right now and could be re-enabled in the future, once solved by docker hub. --- .github/workflows/ci.yaml | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 988e30b16..d043a43ad 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -361,13 +361,15 @@ jobs: else echo "Skipping pushing to 'latest' tag for v$VERSION pre-release..." fi - - name: Update descriptions on Docker Hub - env: - DOCKER_PASS: ${{ secrets.DOCKER_PASS }} - run: | - if [[ -z "$ISPRERELEASE" ]]; then - echo "Updating description on Docker Hub..." - postgrest-release-dockerhub-description - else - echo "Skipping updating description for pre-release..." - fi +# TODO: Enable dockerhub description update again, once a solution for the permission problem is found: +# https://github.com/docker/hub-feedback/issues/1927 +# - name: Update descriptions on Docker Hub +# env: +# DOCKER_PASS: ${{ secrets.DOCKER_PASS }} +# run: | +# if [[ -z "$ISPRERELEASE" ]]; then +# echo "Updating description on Docker Hub..." +# postgrest-release-dockerhub-description +# else +# echo "Skipping updating description for pre-release..." +# fi