Skip to content

Commit 50cc01c

Browse files
authored
Merge pull request #639 from benjeffery/fix_wheels
Fix tag name in windows wheel
2 parents de7c9e4 + cf1f850 commit 50cc01c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,10 @@ jobs:
9292
cp -r --dereference subprojects/git-submodules/tskit/python/lwt_interface ../lwt_interface
9393
cd ..
9494
#Do a little dance to restore the version to a clean tag for setuptools_scm
95-
git tag -d ${{ github.event.ref }}
95+
git tag -d ${{ github.ref_name }}
9696
git add -u
9797
git commit -m "tag dance"
98-
git tag ${{ github.event.ref }}
98+
git tag ${{ github.ref_name }}
9999
${PYTHON} setup.py build_ext --inplace
100100
- name: Build Wheel
101101
env:

0 commit comments

Comments
 (0)