From 037b0d140852e657541a6761a8ee07024e2008ca Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Tue, 11 Jul 2023 00:20:01 +0200 Subject: [PATCH] add sleep in workflow --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 028457f9..3d446530 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -51,6 +51,9 @@ jobs: packages: write needs: build-and-publish-pypi steps: + - name: Sleep for 60 seconds (to prevent race condition with the pypi upload) + run: sleep 60s + shell: bash - uses: actions/checkout@v3.5.3 - name: Log in to the GitHub container registry uses: docker/login-action@v2.2.0 -- 2.34.1