Skip to content

Commit 2213d4f

Browse files
committed
test
1 parent efcbbfa commit 2213d4f

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/workflow.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,20 @@ jobs:
4343
run: |
4444
python -m build
4545
46-
# Step 7: Install twine
46+
# Step 7: List distribution files
47+
- name: List distribution files
48+
run: |
49+
ls -l dist
50+
51+
# Step 8: Install twine
4752
- name: Install twine
4853
run: |
4954
python -m pip install --upgrade twine
5055
51-
# Step 8: Upload to Test PyPI
56+
# Step 9: Upload to Test PyPI
5257
- name: Upload
5358
env:
5459
TWINE_USERNAME: ${{ secrets.USERNAME }}
55-
TWINE_PASSWORD: ${{ secrets.API_TOKEN }}
60+
TWINE_PASSWORD: ${{ secrets.API_KEY }}
5661
run: |
5762
twine upload --repository-url https://test.pypi.org/legacy/ dist/* --verbose

0 commit comments

Comments
 (0)