Skip to content

Commit

Permalink
Hotfix: Incorrect version of pypi publisher specified in tags-to-pypi…
Browse files Browse the repository at this point in the history
… github action.
  • Loading branch information
jordanperr committed Feb 19, 2021
1 parent b615348 commit e21a14d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tags-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ jobs:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@main
- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.8
- name: Build tarballs
run: |
pip install wheel
python setup.py bdist_wheel
python setup.py sdist --formats=gztar
- name: Publish artifacts to PyPI
uses: pypa/gh-action-pypi-publish@main
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_PASSWORD }}
repository_url: https://upload.pypi.org/legacy/

0 comments on commit e21a14d

Please sign in to comment.