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 59fe78a commit e86eb68Copy full SHA for e86eb68
.github/workflows/build.yml
@@ -46,10 +46,15 @@ jobs:
46
name: dist
47
path: |
48
dist
49
+ - name: Copy dist/scsctl-0.0.1.tar.gz dist/scsctl-0.0.1-py3-none-any.whl to release directory
50
+ run: |
51
+ mkdir -p release
52
+ cp dist/scsctl-0.0.1.tar.gz release/scsctl-0.0.1.tar.gz
53
+ cp dist/scsctl-0.0.1-py3-none-any.whl release/scsctl-0.0.1-py3-none-any.whl
54
55
- name: Publish distribution 📦 to Test PyPI
56
uses: pypa/gh-action-pypi-publish@release/v1
57
with:
58
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
59
repository-url: https://test.pypi.org/legacy/
- packages-dir: dist/*.whl
60
+ packages-dir: release
0 commit comments