Skip to content

Bump version to 2024.06.0 #26

Bump version to 2024.06.0

Bump version to 2024.06.0 #26

Workflow file for this run

---
name: Publish to PyPI
"on":
push:
tags:
- "*"
jobs:
publish_to_pypi:
runs-on: ubuntu-latest
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v4
- name: 🏗 Set up Python 3.12
id: python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: 🚀 Publish to PyPi
run: |
pip install poetry
poetry publish --build -u __token__ -p ${{ secrets.PYPI_API_KEY }}