2023-07-25 13:57:29 +01:00
|
|
|
name: Upload Python Package
|
|
|
|
|
2021-04-06 21:32:01 +01:00
|
|
|
on:
|
2021-06-27 20:52:56 +01:00
|
|
|
release:
|
|
|
|
types: [created]
|
2023-07-25 13:57:29 +01:00
|
|
|
workflow_dispatch:
|
2021-04-06 21:32:01 +01:00
|
|
|
jobs:
|
2023-07-25 13:57:29 +01:00
|
|
|
build-n-publish:
|
|
|
|
name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
|
2021-04-06 21:32:01 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-07-25 13:57:29 +01:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
with:
|
|
|
|
python-version: "3.x"
|
|
|
|
- name: Install pypa/build
|
|
|
|
run: >-
|
|
|
|
python3 -m
|
|
|
|
pip install
|
|
|
|
build
|
|
|
|
--user
|
|
|
|
- name: Build a binary wheel and a source tarball
|
|
|
|
run: >-
|
|
|
|
python3 -m
|
|
|
|
build
|
|
|
|
--sdist
|
|
|
|
--wheel
|
|
|
|
--outdir dist/
|
|
|
|
.
|
2023-07-25 14:13:47 +01:00
|
|
|
# - name: Publish distribution 📦 to Test PyPI
|
|
|
|
# uses: pypa/gh-action-pypi-publish@release/v1
|
|
|
|
# with:
|
|
|
|
# password: ${{ secrets.SANIC_TEST_PYPI_API_TOKEN }}
|
|
|
|
# repository-url: https://test.pypi.org/legacy/
|
2023-07-25 13:57:29 +01:00
|
|
|
- name: Publish distribution 📦 to PyPI
|
|
|
|
uses: pypa/gh-action-pypi-publish@release/v1
|
|
|
|
with:
|
|
|
|
password: ${{ secrets.SANIC_PYPI_API_TOKEN }}
|