ci: publish: fixup #10
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish to PyPI 📦 | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- "v*" | |
jobs: | |
test: | |
name: Run tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.x" | |
- name: Install system dependencies | |
run: sudo apt update && sudo apt install -y gettext | |
- name: Install test dependencies | |
run: | | |
python -m pip install --upgrade pip wheel setuptools pytest pytest-django | |
python -m pip install --upgrade "git+https://github.com/pretix/pretix.git@master#egg=pretix" | |
python setup.py develop | |
make | |
style: | |
name: Check code style | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.x" | |
- name: Install system dependencies | |
run: sudo apt update && sudo apt install -y gettext | |
- name: Install style check dependencies | |
run: | | |
python -m pip install --upgrade pip wheel setuptools isort black flake8 check-manifest | |
python -m pip install --upgrade "git+https://github.com/pretix/pretix.git@master#egg=pretix" | |
python setup.py develop | |
black --check . | |
isort -c . | |
flake8 . | |
check-manifest . | |
build: | |
name: Build distribution | |
runs-on: ubuntu-latest | |
needs: [test, style] | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.x" | |
- name: Install system dependencies | |
run: sudo apt update && sudo apt install -y gettext | |
- name: Install build dependencies | |
run: | | |
python -m pip install --upgrade pip wheel setuptools twine check-manifest build | |
- name: Build source and wheel distributions | |
run: | | |
python -m build | |
check-manifest . | |
publish-pypi: | |
name: Publish to PyPI | |
runs-on: ubuntu-latest | |
needs: [build] | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.x" | |
- name: Install system dependencies | |
run: sudo apt update && sudo apt install -y gettext | |
- name: Install twine (needed for pypa/gh-action-pypi-publish) | |
run: python -m pip install --upgrade twine | |
- name: Publish distribution to PyPI | |
uses: pypa/gh-action-pypi-publish@ae63f3323ae7b31c08f2805b18056cbf132ce478 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_API_TOKEN }} |