Skip to content

Commit 8efbde0

Browse files
authored
fix: pass PYPI_TOKEN secret to publish step (#108)
The publish script checks for PYPI_TOKEN env var but the workflow never passed it, falling back to trusted publishing which isn't configured. This caused the 0.34.0 release to fail to publish.
1 parent a3e3877 commit 8efbde0

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

.github/workflows/publish-pypi.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,5 @@ jobs:
3030
- name: Publish to PyPI
3131
run: |
3232
bash ./bin/publish-pypi
33+
env:
34+
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}

0 commit comments

Comments
 (0)