dev-notes/.github/workflows/docs.yml
dependabot[bot] 02d1684d11 Github Actions(deps): Bump actions/checkout from 3 to 4 (#38)
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  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@v3.1.3
with:
python-version: '3.x'
cache: poetry
- name: Install dependencies
run: poetry install
- name: Run gh-deploy
run: poetry run mkdocs gh-deploy --force