Skip to content

Commit

Permalink
realizando deploy do mkdocs
Browse files Browse the repository at this point in the history
  • Loading branch information
rabelzx committed Oct 10, 2023
1 parent a87114e commit 3b8dd70
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 2 deletions.
22 changes: 22 additions & 0 deletions MkDocs/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: ci
on:
push:
branches:
- docs
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x
- uses: actions/cache@v2
with:
key: ${{ github.ref }}
path: .cache
- run: pip install mkdocs-material
- run: pip install pillow cairosvg
- run: mkdocs gh-deploy --force
4 changes: 2 additions & 2 deletions MkDocs/docs/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Welcome to MkDocs
# Documentação da equipe Pollux

For full documentation visit [mkdocs.org](https://www.mkdocs.org).
For full documentit [mkdocs.org](https://www.mkdocs.org).

## Commands

Expand Down
26 changes: 26 additions & 0 deletions MkDocs/mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
site_name: Pollux | MDS
theme:
name: material
features:
- navigation.tabs
- navigation.sections
- toc.integrate
- navigation.top
- search.suggest
- search.highlight
- content.tabs.link
- content.code.annotation
- content.code.copy
language: en
palette:
- scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
primary: teal
accent: purple
- scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
primary: teal
accent: lime


0 comments on commit 3b8dd70

Please sign in to comment.