no mermaid #45
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a basic workflow to help you get started with Actions | |
name: MakeDocs | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the "main" branch | |
push: | |
branches: [ "main","blueprint" ] | |
# pull_request: | |
# branches: [ "main" ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Build and push docs | |
uses: athackst/[email protected] | |
with: | |
# # (optional) Specify branch | |
# publish_branch: main # gh-pages | |
# (optional) The URL of the repository the docs should point to | |
repo_url: https://github.com/martincaddick/gsd_test | |
# (optional) The URL of the site | |
site_url: https://martincaddick.github.io | |
# (optional) The edit URI | |
edit_uri: edit/main/ | |
# # (optional) Specify a google analytics key | |
# # google_analytics: G-QS5J5W9G3Q | |
# # (optional) Specify a different theme [mkdocs|readthedocs|material] | |
theme: material | |
# # (optional) Load a configuration file from a string | |
config: "mkdocs.yml" | |
# # (optional) Version or alias. Specify multiple aliases with space | |
# # example: version: v0.1.0 latest | |
# version: latest | |
# # (optional) The version that will be served by the root of your site | |
# default_version: latest | |
# # (optional) Whether to push the docs to the remote branch | |
# # push: 1 |