Skip to content

Commit 74df466

Browse files
committed
Update publish to use token
1 parent 37427a0 commit 74df466

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818

1919
steps:
2020
- name: Checkout repository
21-
uses: action/checkout@v3
21+
uses: actions/checkout@v3
2222

2323
- name: Setup Python
24-
uses: action/setup-python@v5
24+
uses: actions/setup-python@v5
2525
with:
2626
python-version: "3.13"
2727

@@ -37,4 +37,4 @@ jobs:
3737
3838
- name: Publish
3939
run: |
40-
python -m twine upload --skip-existing --verbose dist/*
40+
python -m twine upload --username ${{ secrets.PYPI_USERNAME }} --password ${{ secrets.PYPI_TOKEN }} --skip-existing --verbose dist/*

0 commit comments

Comments
 (0)