We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72d2744 commit 55a1348Copy full SHA for 55a1348
1 file changed
.github/workflows/pyntcloud_cd.yml
@@ -16,11 +16,12 @@ jobs:
16
- name: Install dependencies
17
run: |
18
python -m pip install --upgrade pip
19
- pip install setuptools wheel twine
20
- - name: Build and publish
21
- env:
22
- TWINE_USERNAME: ${{ secrets.PYPI_USER }}
23
- TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
+ pip install -r requirements.txt
+ - name: Install pyntcloud
24
25
- python setup.py sdist bdist_wheel
26
- twine upload dist/*
+ pip install .
+ - name: Publish packages to PyPI
+ uses: pypa/gh-action-pypi-publish@master
+ with:
+ user: __token__
27
+ password: ${{ secrets.PYPI_TOKEN }}
0 commit comments