Skip to content

Commit

Permalink
Merge pull request #102 from KrishnaswamyLab/dev
Browse files Browse the repository at this point in the history
Fix deploy script
  • Loading branch information
scottgigante committed Feb 4, 2021
2 parents b97acc9 + 356ff02 commit 6b1af72
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/deploy.yml
Expand Up @@ -25,10 +25,13 @@ jobs:
run: |
cd Python
python -m pip install build --user
cd ..
- name: Build a binary wheel and a source tarball
run: |
python -m build --sdist --wheel --outdir dist/ .
cd Python
python -m build --sdist --wheel --outdir ../dist/ .
cd ..
- name: Publish distribution 📦 to Test PyPI
uses: pypa/gh-action-pypi-publish@master
Expand All @@ -41,4 +44,5 @@ jobs:
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
skip_existing: true
password: ${{ secrets.pypi_password }}

0 comments on commit 6b1af72

Please sign in to comment.