Skip to content

Commit 86b3c81

Browse files
committed
add actions and nav header bolded
1 parent 6019629 commit 86b3c81

2 files changed

Lines changed: 29 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: ci
2+
on:
3+
push:
4+
branches:
5+
- master
6+
- main
7+
permissions:
8+
contents: write
9+
jobs:
10+
deploy:
11+
runs-on: ubuntu-latest
12+
if: github.event.repository.fork == false
13+
steps:
14+
- uses: actions/checkout@v3
15+
- uses: actions/setup-python@v4
16+
with:
17+
python-version: 3.x
18+
- uses: actions/cache@v2
19+
with:
20+
key: ${{ github.ref }}
21+
path: .cache
22+
- run: apt-get install pngquant
23+
- run: pip install git+https://${GH_TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git
24+
- run: mkdocs gh-deploy --force
25+
env:
26+
GH_TOKEN: ${{ secrets.GH_TOKEN }}

docs/stylesheets/extra.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
max-width: 90%;
1414
}
1515

16+
.md-nav__item--section > .md-nav__link[for] {
17+
color: inherit;
18+
}
1619

1720
/*
1821
:root {

0 commit comments

Comments
 (0)