Skip to content

v0.1.3

v0.1.3 #4

Workflow file for this run

name: Release Build
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install Build Tools
run: |
python -m pip install build wheel
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Build package
run: |
python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{secrets.PYPI_TOKEN}}