Merge pull request #70 from scrapinghub/coverage #13
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Publish | |
| on: [push] | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| if: startsWith(github.event.ref, 'refs/tags/') | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python 3.10 | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.10" | |
| - name: Check Tag | |
| id: check-release-tag | |
| run: | | |
| if [[ ${{ github.event.ref }} =~ ^refs/tags/[0-9]+[.][0-9]+[.][0-9]+(rc[0-9]+|[.]dev[0-9]+)?$ ]]; then | |
| echo ::set-output name=release_tag::true | |
| fi | |
| - name: Publish to PyPI | |
| if: steps.check-release-tag.outputs.release_tag == 'true' | |
| run: | | |
| pip install --upgrade setuptools wheel twine | |
| python setup.py sdist bdist_wheel | |
| export TWINE_USERNAME=__token__ | |
| export TWINE_PASSWORD=${{ secrets.PYPI_TOKEN }} | |
| twine upload dist/* |