Skip to content

Commit

Permalink
feat: create initial mkdocs configs for GitHub Pages
Browse files Browse the repository at this point in the history
Added GitHub Pages via mkdocs
  • Loading branch information
cardoe committed Feb 26, 2024
1 parent 3b50002 commit 6842294
Show file tree
Hide file tree
Showing 4 changed files with 112 additions and 0 deletions.
59 changes: 59 additions & 0 deletions .github/workflows/mkdocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: pages build and deployment

on:
push:
branches:
- main
paths:
- "docs/**"
- ".github/workflows/mkdocs.yml"
pull_request:
paths:
- "docs/**"
- ".github/workflows/mkdocs.yml"
workflow_dispatch:

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
- run: pip install -r requirements-docs.txt
- run: mkdocs build
- uses: actions/upload-pages-artifact@v2
with:
path: site/

deploy:
# depend on the docs being built
needs: build

# ensure we only run on commits to the main branch
if: github.ref == 'refs/heads/main'

runs-on: ubuntu-latest

# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source

# Deploy to the github-pages environment
environment:
name: "github-pages"
url: ${{ steps.deployment.outputs.page_url }}

steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
1 change: 1 addition & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# UnderStack
50 changes: 50 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
---
site_name: UnderStack
site_description: |-
OpenStack based bare-metal deployment environment with DCIM and IPAM support
theme:
name: material

palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode

features:
- content.code.annotate
- content.code.copy
- content.tooltips
- navigation.instant
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- toc.follow

repo_name: rackerlabs/understack
repo_url: https://github.com/rackerlabs/understack
dev_addr: "127.0.0.1:8001"
edit_uri: "edit/main/docs"

copyright: Copyright © 2024 Rackspace Technology, Inc.

markdown_extensions:
- admonition
- attr_list
- def_list

plugins:
- search

nav:
- index.md
2 changes: 2 additions & 0 deletions requirements-docs.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
mkdocs
mkdocs-material

0 comments on commit 6842294

Please sign in to comment.