2021-08-31 17:00:04 +03:00
|
|
|
name: pypi
|
|
|
|
|
|
|
|
on: push
|
|
|
|
|
|
|
|
jobs:
|
2021-08-31 18:18:07 +03:00
|
|
|
publish-test:
|
|
|
|
name: Build and publish to TestPyPI
|
2021-08-31 17:00:04 +03:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Python 3.9
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
with:
|
|
|
|
python-version: 3.9
|
|
|
|
- name: Install pypa/build
|
|
|
|
run: >-
|
|
|
|
python -m
|
|
|
|
pip install
|
|
|
|
build
|
|
|
|
--user
|
|
|
|
- name: Build binary wheel and source tarball
|
|
|
|
run: >-
|
|
|
|
python -m
|
|
|
|
build
|
|
|
|
--sdist
|
|
|
|
--wheel
|
|
|
|
--outdir dist/
|
|
|
|
.
|
2021-08-31 18:18:07 +03:00
|
|
|
env:
|
|
|
|
DEV_BUILD: 1
|
2021-08-31 17:00:04 +03:00
|
|
|
- name: Publish distribution to TestPyPI
|
|
|
|
uses: pypa/gh-action-pypi-publish@master
|
|
|
|
with:
|
|
|
|
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
|
|
|
|
repository_url: https://test.pypi.org/legacy/
|
2021-08-31 18:18:07 +03:00
|
|
|
publish:
|
|
|
|
name: Build and publish to PyPI
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Python 3.9
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
with:
|
|
|
|
python-version: 3.9
|
|
|
|
- name: Install pypa/build
|
|
|
|
run: >-
|
|
|
|
python -m
|
|
|
|
pip install
|
|
|
|
build
|
|
|
|
--user
|
|
|
|
- name: Build binary wheel and source tarball
|
|
|
|
run: >-
|
|
|
|
python -m
|
|
|
|
build
|
|
|
|
--sdist
|
|
|
|
--wheel
|
|
|
|
--outdir dist/
|
|
|
|
.
|
2021-08-31 17:00:04 +03:00
|
|
|
- name: Publish distribution to PyPI
|
|
|
|
if: startsWith(github.ref, 'refs/tags')
|
|
|
|
uses: pypa/gh-action-pypi-publish@master
|
|
|
|
with:
|
|
|
|
password: ${{ secrets.PYPI_API_TOKEN }}
|
|
|
|
|