mirror of
https://github.com/outbackdingo/matchbox.git
synced 2026-01-27 10:19:35 +00:00
* Add a publish workflow that uses the mkdocs-pages re-usable GitHub Workflow when the `release-docs` branch is updated * Build the docs site with mkdocs and publish to GitHub Pages
14 lines
223 B
YAML
14 lines
223 B
YAML
name: publish
|
|
on:
|
|
push:
|
|
branches:
|
|
- release-docs
|
|
jobs:
|
|
mkdocs:
|
|
name: mkdocs
|
|
uses: ./.github/workflows/mkdocs-pages.yaml
|
|
# Add content write for GitHub Pages
|
|
permissions:
|
|
contents: write
|
|
|