Skip to content

minor: turn off console logging (#45) #22

minor: turn off console logging (#45)

minor: turn off console logging (#45) #22

Workflow file for this run

name: Publish Package
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set Up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install Twine
run: pip install wheel twine build
- name: Build Package
run: python -m build
- name: Publish Package
run: python -m twine upload dist/*