Skip to content

0.5.1

0.5.1 #12

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Publish Packages
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
release:
types:
- created
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: build-archives
run: |
python -m pip install -U pip wheel
python setup.py bdist_wheel sdist
- name: pypi-publish
uses: pypa/gh-action-pypi-publish@v1.8.11
with:
user: __token__
password: ${{ secrets.PYPI_PJO_TOKEN }}