Skip to content

Commit d1437ee

Browse files
committed
Fix PyPI deployment GHA.
A lazy glob caused it to try to upload the docs bundle, which isn't valid.
1 parent def8113 commit d1437ee

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,4 +127,6 @@ jobs:
127127
gh release create "v${version}" --generate-notes $wheel_file $source_file $docs_file
128128
129129
- name: Create PyPI Release
130-
run: uv publish dist/epymorph-*-py3-none-any.whl dist/epymorph-*.tar.gz
130+
run: |
131+
version="$EPYMORPH_VERSION"
132+
uv publish "dist/epymorph-${version}-py3-none-any.whl" "dist/epymorph-${version}.tar.gz"

0 commit comments

Comments
 (0)