dev-notes/.github/workflows/docs.yml
dependabot[bot] 85181abce4 Github Actions(deps): Bump actions/setup-python from 3.1.3 to 4.7.1 (#37)
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 3.1.3 to 4.7.1.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](https://github.com/actions/setup-python/compare/v3.1.3...v4.7.1)

---
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>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-01-31 10:44:46 +01:00

27 lines
546 B
YAML

name: Deploy to Github Pages
on:
push:
branches: [ "main" ]
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Setup Python
uses: actions/setup-python@v4.7.1
with:
python-version: '3.x'
cache: poetry
- name: Install dependencies
run: poetry install
- name: Run gh-deploy
run: poetry run mkdocs gh-deploy --force