We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efcbbfa commit 2213d4fCopy full SHA for 2213d4f
.github/workflows/workflow.yaml
@@ -43,15 +43,20 @@ jobs:
43
run: |
44
python -m build
45
46
- # Step 7: Install twine
+ # Step 7: List distribution files
47
+ - name: List distribution files
48
+ run: |
49
+ ls -l dist
50
+
51
+ # Step 8: Install twine
52
- name: Install twine
53
54
python -m pip install --upgrade twine
55
- # Step 8: Upload to Test PyPI
56
+ # Step 9: Upload to Test PyPI
57
- name: Upload
58
env:
59
TWINE_USERNAME: ${{ secrets.USERNAME }}
- TWINE_PASSWORD: ${{ secrets.API_TOKEN }}
60
+ TWINE_PASSWORD: ${{ secrets.API_KEY }}
61
62
twine upload --repository-url https://test.pypi.org/legacy/ dist/* --verbose
0 commit comments