Skip to content

added twine installation in pypi action #14

added twine installation in pypi action

added twine installation in pypi action #14

Workflow file for this run

name: Publish Python 🐍 distribution 📦 to PyPI and TestPyPI
on:
push:
tags:
- v*
jobs:
build:
name: Build distribution 📦
runs-on: ubuntu-latest
environment:
name: pypi
permissions:
id-token: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install pypa/build
run: python3 -m pip install build twine --user
- name: Install dependencies
run: pip install -r requirements.txt
- name: Build a binary wheel and a source tarball
run: python3 -m build
- name: Publish Python 🐍 distribution 📦 to PyPI
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
run: python -m twine upload dist/* --username __token__ \
--password $PYPI_TOKEN