1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 16:14:48 +01:00
pywb/.github/workflows/publish_pypi.yaml
Ilya Kreymer 1dedc46dce
ci: automated pypi publish on release (#776)
- dependencies: wombat 3.3.11
- ci: pypi publish for pywb
- update CHANGES for 2.6.9 release
2022-11-18 17:56:24 -08:00

34 lines
767 B
YAML

name: Publish to PYPI
on:
release:
types: [published]
jobs:
pypi-release:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
steps:
- name: checkout
uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: python -m pip install --upgrade pip wheel twine
- name: Build Dist
run: python setup.py sdist bdist_wheel --universal
- name: Publish package to TestPyPI
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}