Merge pull request #4 from hasanatkazmi/main #10
This file contains 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 Python π distributions π¦ to TestPyPI and PyPI | |
on: | |
push: | |
paths-ignore: | |
- 'README.md' | |
- '.gitignore' | |
- '.github/**' # Ignore changes to github workflows | |
branches: | |
- main | |
jobs: | |
build-n-publish: | |
name: Build and publish Python π distributions π¦ to TestPyPI and PyPI | |
runs-on: ubuntu-18.04 | |
steps: | |
- uses: actions/checkout@master | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.7 | |
- name: Install pypa/build | |
run: >- | |
python -m | |
pip install | |
build | |
--user | |
- name: Build a binary wheel and a source tarball | |
run: >- | |
python -m | |
build | |
--sdist | |
--wheel | |
--outdir dist/ | |
- name: Publish distribution π¦ to Test PyPI | |
# Any release with tags need not be published to Test PYPI , as it would have already been published and may lead to error. | |
if: startsWith(github.ref, 'refs/tags') != true | |
uses: pypa/gh-action-pypi-publish@master | |
with: | |
password: ${{ secrets.TEST_PYPI_API_TOKEN }} | |
repository_url: https://test.pypi.org/legacy/ | |
- name: Publish distribution π¦ to PyPI | |
if: startsWith(github.ref, 'refs/tags') | |
uses: pypa/gh-action-pypi-publish@master | |
with: | |
password: ${{ secrets.PYPI_API_TOKEN }} |