We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79a7230 commit 3ee262eCopy full SHA for 3ee262e
2 files changed
.github/workflows/ci.yml
@@ -4,18 +4,15 @@ name: ci
4
on:
5
push:
6
branches:
7
- - main
+ - master
8
9
jobs:
10
deploy:
11
runs-on: ubuntu-latest
12
steps:
13
- - uses: actions/checkout@v2
14
- - uses: actions/setup-python@v2
+ - uses: actions/checkout@v4
+ - uses: actions/setup-python@v5
15
with:
16
python-version: 3.x
17
- - run: pip install mkdocs-material
18
- pip install mkdocs-glightbox
19
-
20
+ - run: pip install -r requirements.txt
21
- run: mkdocs gh-deploy --force
requirements.txt
@@ -0,0 +1,11 @@
1
+# requirements for core
2
+mergedeep
3
+mkdocs-material
+cairosvg
+pillow
+
+#requirements for intergration
+mkdocs-awesome-pages-plugin
+mkdocs-glightbox
+markdown-grid-tables
0 commit comments