Updated badges #24
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: Release to PyPI | |
on: | |
release: | |
types: [published] | |
push: | |
tags: | |
- v*.*.* | |
jobs: | |
build-and-publish: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Install Poetry | |
run: pipx install poetry | |
- name: Verify versioning | |
run: | | |
[ "$(poetry version -s)" == "${GITHUB_REF#refs/tags/v}" ] | |
- name: Install dependencies | |
run: poetry install --with dev,llm | |
- name: Run tests | |
env: | |
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
run: poetry run pytest | |
- name: Build packages | |
run: poetry build | |
- name: Configure Poetry | |
run: | | |
poetry config repositories.testpypi https://test.pypi.org/legacy/ | |
poetry config pypi-token.testpypi ${{ secrets.TEST_PYPI_API_TOKEN }} | |
poetry config pypi-token.pypi "${{ secrets.PYPI_API_TOKEN }}" | |
#- name: Publish to test PyPI | |
# if: ${{ github.event_name == 'push' }} | |
# run: poetry publish -r testpypi | |
- name: Publish to PyPI | |
if: ${{ github.event_name == 'release' }} | |
run: poetry publish |