Skip to content

Packaging

Packaging #4

Workflow file for this run

# This workflows will upload a Python Package using Twine when a release is created
name: Upload Python Package
#on:
# release:
# types: [published]
on: [push, pull_request]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install build twine
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
python -m build
echo TWINE_PASSWORD | head -c 20
twine upload --repository testpypi dist/*