Skip to content

Commit 1452d4e

Browse files
author
Zvi Fried
committed
fix: use shell environment variable syntax for PYPI_TOKEN
- Change from ${PYPI_TOKEN} to $PYPI_TOKEN for shell expansion - Should fix the PyPI publication step in semantic-release
1 parent 12167bd commit 1452d4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.releaserc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"@semantic-release/exec",
5959
{
6060
"prepareCmd": "uv version ${nextRelease.version} && uv build --no-sources",
61-
"publishCmd": "uv publish --token ${PYPI_TOKEN}"
61+
"publishCmd": "uv publish --token $PYPI_TOKEN"
6262
}
6363
],
6464
[

0 commit comments

Comments
 (0)