Skip to content

moved to environment sec #22

moved to environment sec

moved to environment sec #22

name: Publish Python 🐍 distribution 📦 to PyPI and TestPyPI
on:
push:
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 --upgrade build twine
- name: Install dependencies
run: pip install -r requirements.txt
- name: Build a binary wheel and a source tarball
run: python3 -m build
- name: Publish to PyPI
env:
TWINE_USERNAME: "__token__"
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
TWINE_REPOSITORY_URL: "https://test.pypi.org/legacy/"
run: |
echo KEY: "${TWINE_PASSWORD}"
python -m twine upload dist/*