Skip to content

Commit f1bc0b5

Browse files
fix deployment
1 parent 815904a commit f1bc0b5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: publish
33
on:
44
release:
55
types: [created]
6+
workflow_dispatch:
67

78
jobs:
89
publish:
@@ -18,7 +19,8 @@ jobs:
1819

1920
- name: Publish to PyPi
2021
env:
21-
PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
22+
TWINE_USERNAME: __token__
23+
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
2224
run: |
2325
pip install wheel twine
2426
make upload

0 commit comments

Comments
 (0)