You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
TRaSH-Guides/.github/workflows/mkdocs.yml

26 lines
445 B

name: Publish docs via GitHub Pages
on:
push:
branches:
- master
jobs:
build:
name: Deploy docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.3
- uses: actions/setup-python@v2.1.4
with:
python-version: 3.x
- run: pip install -r requrements.txt
- run: |
cp README.md docs/index.md
cp -r images/ docs
- run: mkdocs gh-deploy --force