Skip to content

Bump selenium from 4.23.0 to 4.23.1 (#413) #358

Bump selenium from 4.23.0 to 4.23.1 (#413)

Bump selenium from 4.23.0 to 4.23.1 (#413) #358

Workflow file for this run

name: Publish Python 🐍 distributions 📦 to PyPI
on:
push:
branches:
- master
release:
types:
- published
jobs:
build-and-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v5.1.1
with:
python-version: 3.8
- name: Build Zoomba
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 distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}