Skip to content

Commit 53e27e5

Browse files
davide125Conan-Kudo
authored andcommitted
Add social cards
Signed-off-by: Davide Cavalca <[email protected]>
1 parent 948e08a commit 53e27e5

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

Diff for: .github/workflows/ci.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,14 @@ jobs:
99
deploy:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- name: Checkout
13+
uses: actions/checkout@v4
14+
with:
15+
submodules: true
1316
- name: Configure Git Credentials
1417
run: |
1518
git config user.name github-actions[bot]
1619
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
17-
- name: Update submodules
18-
run: git submodule update --init
1920
- uses: actions/setup-python@v5
2021
with:
2122
python-version: 3.x
@@ -26,5 +27,5 @@ jobs:
2627
path: .cache
2728
restore-keys: |
2829
mkdocs-material-
29-
- run: pip install mkdocs-material
30+
- run: pip install mkdocs-material mkdocs-material[imaging]
3031
- run: mkdocs gh-deploy --force

Diff for: .gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
site/
1+
/.cache/
2+
/site/

Diff for: mkdocs.yml

+4
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,7 @@ markdown_extensions:
6363

6464
plugins:
6565
- search
66+
- social:
67+
cards_layout_options:
68+
background_color: '#F4EAEA'
69+
color: '#2C2C2C'

0 commit comments

Comments
 (0)