From 178af5e32943be5d57e5a1f69d6fcc85de06b8a8 Mon Sep 17 00:00:00 2001 From: Santiago Fraire Date: Thu, 25 Apr 2024 09:18:10 +0200 Subject: [PATCH] OPT: Increase wait time to release to docker --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ae17d41..a09be74 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -38,13 +38,13 @@ jobs: export CURRENT_VERSION=$(poetry run cz version -p) echo "VERSION=$CURRENT_VERSION" >> $GITHUB_OUTPUT - name: Sleep for 30 seconds (give time to pypi to publish package) - run: sleep 30s + run: sleep 40s shell: bash - name: Log in to Docker Hub uses: docker/login-action@v3 with: username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} + password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build and push Docker image uses: docker/build-push-action@v5 if: "${{ steps.getversion.outputs.VERSION != '' }}"