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.
This commit is contained in:
Wolfgang Walther
2022-06-03 22:19:16 -05:00
committed by Steve Chavez
parent 88674c5af6
commit 0d99789938
+12 -10
View File
@@ -361,13 +361,15 @@ jobs:
else else
echo "Skipping pushing to 'latest' tag for v$VERSION pre-release..." echo "Skipping pushing to 'latest' tag for v$VERSION pre-release..."
fi fi
- name: Update descriptions on Docker Hub # TODO: Enable dockerhub description update again, once a solution for the permission problem is found:
env: # https://github.com/docker/hub-feedback/issues/1927
DOCKER_PASS: ${{ secrets.DOCKER_PASS }} # - name: Update descriptions on Docker Hub
run: | # env:
if [[ -z "$ISPRERELEASE" ]]; then # DOCKER_PASS: ${{ secrets.DOCKER_PASS }}
echo "Updating description on Docker Hub..." # run: |
postgrest-release-dockerhub-description # if [[ -z "$ISPRERELEASE" ]]; then
else # echo "Updating description on Docker Hub..."
echo "Skipping updating description for pre-release..." # postgrest-release-dockerhub-description
fi # else
# echo "Skipping updating description for pre-release..."
# fi