We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 689768b commit 4000675Copy full SHA for 4000675
.github/workflows/publish-to-ghcr-and-pypi.yml
@@ -73,10 +73,12 @@ jobs:
73
# for more detailed information.
74
password: ${{ secrets.GITHUB_TOKEN }}
75
76
- # Get the cartography version from the GitHub release event metadata
77
- - name: Extract version
+ # Get the cartography version from the GitHub release event metadata and sleep to wait for PyPI to finish publishing
+ - name: Extract version and sleep
78
id: version
79
- run: echo "VERSION=${{ github.event.release.tag_name }}" >> $GITHUB_ENV
+ run: |
80
+ echo "VERSION=${{ github.event.release.tag_name }}" >> $GITHUB_ENV
81
+ sleep 10
82
83
- name: Build and push
84
uses: docker/build-push-action@v3
0 commit comments