mirror of
https://github.com/zoriya/guessit.git
synced 2026-05-28 00:31:38 +00:00
26 lines
541 B
YAML
26 lines
541 B
YAML
name: mkdocs
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: 3.x
|
|
|
|
- run: pip install mkdocs mkdocs-material
|
|
- run: mkdocs build
|
|
|
|
- name: Deploy 🚀
|
|
uses: JamesIves/github-pages-deploy-action@v4
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
branch: gh-pages
|
|
folder: site
|
|
clean: true
|
|
single-commit: true
|