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

[pre-commit.ci] pre-commit suggestions #525

[pre-commit.ci] pre-commit suggestions

[pre-commit.ci] pre-commit suggestions #525

Workflow file for this run

name: PyPI Release
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@master
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: python -m pip install -U setuptools wheel build
- name: Build
run: python -m build
- name: Publish distribution 📦 to PyPI
if: startsWith(github.event.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.pypi_password }}