Skip to content

Actually publishing to PyPi now... #6

Actually publishing to PyPi now...

Actually publishing to PyPi now... #6

Workflow file for this run

name: Publish to PyPI!!
on:
release:
types:
- created
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.ASCIIGraphics_TOKEN }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*