Skip to content

Commit

Permalink
Stes
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromekelleher committed Aug 30, 2023
1 parent 212faf5 commit 791a5d9
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,24 +105,24 @@ jobs:
pip install tstrait --only-binary tstrait -f .
python -c "import tstrait"
# PyPI_Upload:
# runs-on: ubuntu-latest
# needs: ['windows-test', 'OSX-test', 'distbuild-test']
# steps:
# - name: Download all
# uses: actions/download-artifact@v2
# - name: Move to dist
# run: |
# mkdir dist
# cp */*.{whl,gz} dist/.
# - name: Publish distribution to Test PyPI
# if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
# uses: pypa/gh-action-pypi-publish@master
# with:
# password: ${{ secrets.test_pypi_password }}
# repository_url: https://test.pypi.org/legacy/
# - name: Publish distribution to PRODUCTION PyPI
# if: github.event_name == 'release'
# uses: pypa/gh-action-pypi-publish@master
# with:
# password: ${{ secrets.pypi_password }}
PyPI_Upload:
runs-on: ubuntu-latest
needs: ['windows-test', 'OSX-test', 'linux-test']
steps:
- name: Download all
uses: actions/download-artifact@v2
- name: Move to dist
run: |
mkdir dist
cp */*.{whl,gz} dist/.
- name: Publish distribution to Test PyPI
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.test_pypi_password }}
repository_url: https://test.pypi.org/legacy/
- name: Publish distribution to PRODUCTION PyPI
if: github.event_name == 'release'
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.pypi_password }}

0 comments on commit 791a5d9

Please sign in to comment.