mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-15 16:14:48 +01:00
34 lines
767 B
YAML
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 }}
|
||
|
|