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.
2 parents c7d457a + 0d30807 commit 92b5c15Copy full SHA for 92b5c15
.github/workflows/pypi-publish.yml
@@ -18,11 +18,15 @@ jobs:
18
steps:
19
- uses: actions/checkout@v4
20
with:
21
- fetch-tags: true
22
persist-credentials: false
23
24
- uses: actions/setup-python@v5
25
+ - name: Get history and tags for SCM versioning to work
26
+ run: |
27
+ git fetch --prune --unshallow
28
+ git fetch --depth=1 origin +refs/tags/*:refs/tags/*
29
+
30
- name: Build a source tarball and a binary wheel
31
# https://pypa-build.readthedocs.io
32
run: |
0 commit comments