Bump version to 2023.08.0 #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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 }} |