From 82c44190cc41341cc880f44341c45df992344a28 Mon Sep 17 00:00:00 2001 From: Lucky Baar Date: Wed, 1 Feb 2023 14:55:07 -0600 Subject: [PATCH] fix: disable update-repo-description --- .github/workflows/container.yml | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index f01392632c..d279f141c7 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -52,18 +52,19 @@ jobs: URL=${{ github.server_url }}/${{ github.repository }}.git BRANCH=${{ github.ref_name }} - update-repo-description: - name: Update DockerHub Repository Description - runs-on: ubuntu-latest - if: github.ref == format('refs/heads/{0}', 'master') - steps: - - name: Checkout Code - uses: actions/checkout@v3 + # TODO: uncomment when https://github.com/docker/hub-tool/issues/172 is complete + # update-repo-description: + # name: Update DockerHub Repository Description + # runs-on: ubuntu-latest + # if: github.ref == format('refs/heads/{0}', 'master') + # steps: + # - name: Checkout Code + # uses: actions/checkout@v3 - - name: Update DockerHub Repository Description - uses: peter-evans/dockerhub-description@v3 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - repository: ${{ github.repository_owner }}/algod - readme-filepath: ./docker/README.md + # - name: Update DockerHub Repository Description + # uses: peter-evans/dockerhub-description@v3 + # with: + # username: ${{ secrets.DOCKERHUB_USERNAME }} + # password: ${{ secrets.DOCKERHUB_TOKEN }} + # repository: ${{ github.repository_owner }}/algod + # readme-filepath: ./docker/README.md