Skip to content

Commit

Permalink
Merge pull request #13 from aliceinwire/readme
Browse files Browse the repository at this point in the history
mkdocs: Add mkdocs
  • Loading branch information
aliceinwire authored Sep 20, 2024
2 parents 671ea0c + fbe6b47 commit 3fab63d
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/docs_publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
name: Docs publish

on:
push:
branches:
- main

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.7
- run: pip install mkdocs-material
- run: mkdocs gh-deploy --force
3 changes: 3 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# kci-dev

kci-dev is a cmdline tool for interact with a enabled KernelCI server
34 changes: 34 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
# Project Information
site_name: kci-dev
site_author: Arisu Tachibana
site_description: >-
kci-dev is a cmdline tool for interact with a
enabled KernelCI server.
# Repository information
repo_name: kernelci/kci-dev
repo_url: https://github.com/kernelci/kci-dev
edit_uri: ""

# Configuration
theme:
name: material
icon:
repo: fontawesome/brands/github
features:
- navigation.instant
- navigation.tabs
language: en

# Footer
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/kernelci
name: kernelci on GitHub

# Page tree
nav:
- Home:
- Introduction: index.md

0 comments on commit 3fab63d

Please sign in to comment.