Skip to content

PyPi: Updated to v1.1.1 #6

PyPi: Updated to v1.1.1

PyPi: Updated to v1.1.1 #6

Workflow file for this run

name: Publish to PyPI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
environment: release
permissions:
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install build dependencies
run: |
python -m pip install --upgrade pip
pip install hatch
- name: Build the package
run: hatch build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1