Skip to content

Bump version to 2023.08.0 #8

Bump version to 2023.08.0

Bump version to 2023.08.0 #8

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@v3
- name: 🏗 Set up Python 3.9
id: python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: 🚀 Publish to PyPi
run: |
pip install poetry
poetry publish --build -u __token__ -p ${{ secrets.PYPI_API_KEY }}