Skip to content

chore: update twine in workflow pypi publish #20

chore: update twine in workflow pypi publish

chore: update twine in workflow pypi publish #20

Workflow file for this run

name: Upload Python Package
on:
push:
tags:
- '*'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install dependencies
run: |
pip install --upgrade pip
pip install build
pip install --upgrade pkginfo
pip install --upgrade twine
- name: Extract tag name
id: tag
run: echo TAG_NAME=$(echo $GITHUB_REF | cut -d / -f 3) >> $GITHUB_OUTPUT
- name: Update version in pyproject.toml
run: >-
sed -i "s/0.0.0/${{ steps.tag.outputs.TAG_NAME }}/" pyproject.toml
- name: print pyproject.toml
run: cat pyproject.toml
- name: Build package
run: python -m build
- name: Publish package
uses: pypa/[email protected]
with:
password: ${{ secrets.PYPI_API_TOKEN }}