mirror of
https://github.com/haiwen/seafile-admin-docs.git
synced 2025-12-26 02:32:50 +00:00
19 lines
397 B
YAML
19 lines
397 B
YAML
name: Deploy CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.x
|
|
- run: pip install mkdocs-material mkdocs-awesome-pages-plugin mkdocs-material-extensions
|
|
- run: cd $GITHUB_WORKSPACE
|
|
- run: mkdocs gh-deploy --force
|