Skip to content

Commit a7d90d0

Browse files
committed
Minor fix to github workflow
ref vs ref_name matters for projects where the tag differs from the release name (as in '0.1' vs 'v0.1').
1 parent 8e208ed commit a7d90d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/publish_to_pypi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ jobs:
5757
env:
5858
GH_TOKEN: ${{ github.token }}
5959
GH_REPO: ${{ github.repository }}
60-
run: gh release upload "${{ github.ref }}" dist/*
60+
run: gh release upload "${{ github.ref_name }}" dist/*

0 commit comments

Comments
 (0)