Skip to content

✏️ fix api token issue #6

✏️ fix api token issue

✏️ fix api token issue #6

Workflow file for this run

name: Publish Python Package
on:
push:
tags:
- "v*"
jobs:
build-and-publish:
name: Build and Publish
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
echo "export PATH=\"$HOME/.local/bin:$PATH\"" >> $GITHUB_ENV
- name: Install dependencies
run: poetry install --no-interaction --no-ansi
- name: Build the package
run: poetry build
- name: Configure Poetry for PyPI
run: |
poetry config pypi-token.pypi ${{ secrets.TWINE_API_TOKEN }}
- name: Publish to PyPI
run: |
poetry publish --no-interaction --no-ansi