mirror of
https://github.com/outbackdingo/matchbox.git
synced 2026-03-21 11:43:35 +00:00
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 5. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
27 lines
557 B
YAML
27 lines
557 B
YAML
name: mkdocs-pages
|
|
on:
|
|
workflow_call:
|
|
jobs:
|
|
publish:
|
|
name: publish
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# Checkout repo to GitHub Actions runner
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
# Install Python
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: 3.x
|
|
|
|
# Install PyPI packages
|
|
- name: Dependencies
|
|
run: pip install -r requirements.txt
|
|
|
|
# Push to GitHub Pages
|
|
- name: Push Docs
|
|
run: |
|
|
mkdocs gh-deploy --force
|