Skip to content

revision-date-localized v1.2.9 #51

revision-date-localized v1.2.9

revision-date-localized v1.2.9 #51

Workflow file for this run

name: Upload Python Package
on:
workflow_dispatch:
release:
types: [created]
jobs:
deploy:
runs-on: ubuntu-latest
environment: release
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Make sure unit tests succeed
run: |
git config --global user.name "Github Action"
git config --global user.email "githubaction@gmail.com"
pip install -r requirements_dev.txt
pip install .
pytest
- name: Build
run: |
pip install build setuptools
python -m build
# See https://docs.pypi.org/trusted-publishers/using-a-publisher/
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
- name: Deploy mkdocs site
run: |
pip install -r requirements_dev.txt
mkdocs gh-deploy --force