Skip to content

Bump requests from 2.32.5 to 2.33.0 #24

Bump requests from 2.32.5 to 2.33.0

Bump requests from 2.32.5 to 2.33.0 #24

name: Publish Python 🐍 package to PyPI
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install build tools
run: |
python -m pip install --upgrade pip
pip install build twine
- name: Build package
run: |
python -m build
- name: Publish to PyPI
env:
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
twine upload -u __token__ -p $TWINE_PASSWORD dist/*