RAGChecker v0.1.1 #2
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: | |
release: | |
types: [published] | |
jobs: | |
pypi_release: | |
name: Builds Using Poetry and Publishes to PyPI | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Install poetry | |
uses: abatilo/actions-poetry@v2 | |
- run: poetry config pypi-token.pypi "${{ secrets.PYPI_API_TOKEN }}" | |
- name: Publish package | |
run: poetry publish --build |