Skip to content

Commit cec8e48

Browse files
committed
Fix twine upload command
Wildcards should not be in quotes.
1 parent a54485d commit cec8e48

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

templates/github/.github/workflows/scripts/publish_plugin_pypi.sh.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ then
1616
fi
1717

1818
twine upload -u __token__ -p "${PYPI_API_TOKEN}" \
19-
"dist/{{ plugin_name | snake | replace("_", "?") }}-${VERSION}-py3-none-any.whl" \
20-
"dist/{{ plugin_name | snake | replace("_", "?") }}-${VERSION}.tar.gz" \
19+
dist/{{ plugin_name | snake | replace("_", "?") }}-"${VERSION}"-py3-none-any.whl \
20+
dist/{{ plugin_name | snake | replace("_", "?") }}-"${VERSION}".tar.gz \
2121
;

0 commit comments

Comments
 (0)