Skip to content

Release 0.4.0 with Apache 2.0 license and security improvements #4

Release 0.4.0 with Apache 2.0 license and security improvements

Release 0.4.0 with Apache 2.0 license and security improvements #4

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- 'v*' # Trigger on version tags
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # This is important for poetry-dynamic-versioning
- name: Set up Python
uses: actions/setup-python@v5
with:
<<<<<<< HEAD

Check failure on line 19 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish.yml

Invalid workflow file

You have an error in your yaml syntax on line 19
python-version: '3.10'
=======
python-version: '3.11'
>>>>>>> origin/main
- name: Install dependencies
run: |
pip install venv
poetry install
- name: Build package
run: poetry build
- name: Publish to PyPI
env:
PYPI_USERNAME: __token__
PYPI_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: poetry publish