Skip to content
This repository has been archived by the owner on Aug 15, 2024. It is now read-only.

Bump urllib3 from 1.26.18 to 1.26.19 #161

Bump urllib3 from 1.26.18 to 1.26.19

Bump urllib3 from 1.26.18 to 1.26.19 #161

Workflow file for this run

name: PyPI Publish
on: [push]
jobs:
build:
name: Build and publish Python 🐍 distributions 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install pypa/build
run: >-
python -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: >-
python -m
build
--sdist
--wheel
--outdir dist/
.
- name: Publish package
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}