Skip to content

Merge pull request #8 from IntunoAI/bump-version-1 #3

Merge pull request #8 from IntunoAI/bump-version-1

Merge pull request #8 from IntunoAI/bump-version-1 #3

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- "v*"
jobs:
publish:
runs-on: ubuntu-latest
environment: pypi
permissions:
id-token: write # required for trusted publishing (OIDC)
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install Poetry
run: pip install poetry
- name: Build
run: poetry build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1