T021-23 ATO Sandra #24
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: Build package / publish | |
on: | |
push: | |
branches: [ main ] | |
tags: [ "v*" ] | |
release: | |
types: [ published ] | |
# Check that package can be built even on PRs | |
pull_request: | |
branches: [ main ] | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- uses: actions/setup-python@v2 | |
- name: Cache Python packages | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cache/pip | |
key: publish-${{ runner.os }} | |
- name: Upgrade pip, wheel, setuptools-scm | |
run: python -m pip install --upgrade pip wheel setuptools-scm twine | |
- name: Build package | |
run: | | |
python3 setup.py bdist_wheel sdist | |
twine check dist/* | |
- name: Publish to TestPyPI | |
uses: pypa/[email protected] | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
with: | |
user: __token__ | |
password: ${{ secrets.TESTPYPI_TOKEN }} | |
repository_url: https://test.pypi.org/legacy/ | |
- name: Publish to PyPI | |
uses: pypa/[email protected] | |
if: github.event_name == 'release' | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_TOKEN }} |