mkdocs-charts-plugin v0.0.10 #12
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: Upload Python Package | |
on: | |
workflow_dispatch: | |
release: | |
types: [created] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
permissions: | |
# IMPORTANT: this permission is mandatory for trusted publishing | |
id-token: write | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
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: | | |
pip install -r tests/test_requirements.txt | |
pip install . | |
pytest | |
- name: Build package | |
run: | | |
python setup.py sdist bdist_wheel | |
# 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 mkdocs-git-revision-date-localized-plugin | |
pip install mkdocs-material | |
mkdocs gh-deploy --force |