Skip to content

GitHub Action for building the Tangerine Documentation with Mkdocs

Notifications You must be signed in to change notification settings

Tangerine-Community/tangy-mkdocs-build-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

tangy-mkdocs-build-action

This GitHub Action will compile your MkDocs site and Deploy it to GitHub Pages using one of the default themes. It assumes that you have a mkdocs.yml file a in the top-level directory of your project and that the documentation source files (in Markdown format) are stored within the docs/ directory.

GitHub Action for building the Tangerine Documentation with Mkdocs and publish to GitHub Pages

Example Action Workflow for your Repo

name: Build Documentation using MkDocs

# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
  push:
    branches: [master]
  pull_request:
    branches: [master]

jobs:
  build:
    name: Build and Deploy Documentation
    runs-on: ubuntu-latest

    steps:
      - name: Checkout Master
        uses: actions/checkout@v2

      - name: Build and Deploy Documentation using MkDocs
        uses: Tangerine-Community/tangy-mkdocs-build-action@v1

About

GitHub Action for building the Tangerine Documentation with Mkdocs

Resources

Stars

Watchers

Forks

Packages

No packages published