Skip to content

ci: publish: another try no.4 #9

ci: publish: another try no.4

ci: publish: another try no.4 #9

Workflow file for this run

name: Publish to PyPI 📦
on:name: Python CI

Check failure on line 3 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / Publish to PyPI 📦

Invalid workflow file

The workflow is not valid. .github/workflows/publish.yml (Line: 3, Col: 1): Unexpected value 'on:name'
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 }}