Skip to content

updating readme for now and tagging with 1.0.0, because that's what i do #3

updating readme for now and tagging with 1.0.0, because that's what i do

updating readme for now and tagging with 1.0.0, because that's what i do #3

Workflow file for this run

name: Publish Artifacts
on:
push:
branches:
- main
permissions:
id-token: write
contents: read
jobs:
pypi-publish:
name: Upload Release to PyPI
runs-on: ubuntu-latest
# Specifying a GitHub environment is optional, but strongly encouraged
environment: pypi
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install build
- name: Build package
run: |
python -m build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1