mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-22 16:03:19 +01:00
a3b7c25920
used as a controlled release trigger event for this workflow
34 lines
787 B
YAML
34 lines
787 B
YAML
name: Publish ${package_name} to PyPI and ReadTheDocs
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
jobs:
|
|
build-n-publish:
|
|
name: Build and publish to PyPI
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout source
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ github.ref_name }}
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: "3.x"
|
|
|
|
- name: Build source and wheel distributions
|
|
run: |
|
|
python -m pip install --upgrade build twine
|
|
python -m build
|
|
twine check --strict dist/*
|
|
- name: Publish distribution to PyPI
|
|
uses: pypa/gh-action-pypi-publish@master
|
|
with:
|
|
user: __token__
|
|
password: ${{ secrets.PYPI_API_TOKEN }}
|
|
|