mirror of
https://github.com/deadc0de6/catcli
synced 2024-11-15 18:14:01 +00:00
27 lines
691 B
YAML
27 lines
691 B
YAML
name: Release to PyPI
|
|
on:
|
|
release:
|
|
types: [created]
|
|
jobs:
|
|
pypi_publish:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python 3.8
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.8
|
|
- name: Install Tools
|
|
run: |
|
|
sudo apt update
|
|
python -m pip install --upgrade pip
|
|
pip install setuptools wheel twine
|
|
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
|
|
- name: Build and Publish
|
|
env:
|
|
TWINE_USERNAME: __token__
|
|
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
|
|
run: |
|
|
python setup.py sdist bdist_wheel
|
|
twine upload dist/*
|