Skip to content

RC 3 - Bump Redis, Drop 3.7 #18

RC 3 - Bump Redis, Drop 3.7

RC 3 - Bump Redis, Drop 3.7 #18

Workflow file for this run

name: Release to PyPI
on:
release:
types: [published]
jobs:
build:
name: Build dist & publish
runs-on: ubuntu-latest
if: ${{ !contains(github.ref, 'dev') && !contains(github.ref, 'rc') }}
steps:
- name: Checkout the repo and the submodules.
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install build dependencies & build
run: |
python -m pip install --upgrade pip
pip install setuptools wheel
python setup.py sdist bdist_wheel
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@v1.3.1
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}