mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2025-12-23 18:29:23 -05:00
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5 to 6. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
21 lines
545 B
YAML
21 lines
545 B
YAML
name: Make Docs
|
|
on:
|
|
# the 1st condition
|
|
workflow_run:
|
|
workflows: ["Continuous Integration"]
|
|
branches: [master]
|
|
types:
|
|
- completed
|
|
|
|
jobs:
|
|
deploy:
|
|
if: github.repository_owner == 'TandoorRecipes' && ${{ github.event.workflow_run.conclusion == 'success' }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- uses: actions/setup-python@v6
|
|
with:
|
|
python-version: 3.x
|
|
- run: pip install mkdocs-material mkdocs-include-markdown-plugin
|
|
- run: mkdocs gh-deploy --force
|