Skip to content

Commit eab5eea

Browse files
Oleksandr Kulkovadamant-pwn
Oleksandr Kulkov
authored andcommitted
make install script
1 parent e6e4726 commit eab5eea

File tree

3 files changed

+12
-16
lines changed

3 files changed

+12
-16
lines changed

.github/workflows/deploy-prod.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,7 @@ jobs:
2121
python-version: '3.8'
2222
- name: Install mkdocs-material
2323
run: |
24-
pip install \
25-
mkdocs-material \
26-
mkdocs-macros-plugin \
27-
mkdocs-literate-nav \
28-
mkdocs-git-authors-plugin \
29-
mkdocs-git-revision-date-localized-plugin \
30-
mkdocs-simple-hooks \
31-
plugins/mkdocs-git-committers-plugin-2
24+
scripts/install-mkdocs.sh
3225
- name: Cache Github Users
3326
uses: actions/cache@v3
3427
with:

.github/workflows/test.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,7 @@ jobs:
1717
python-version: '3.8'
1818
- name: Install mkdocs-material
1919
run: |
20-
pip install \
21-
mkdocs-material \
22-
mkdocs-macros-plugin \
23-
mkdocs-literate-nav \
24-
mkdocs-git-authors-plugin \
25-
mkdocs-git-revision-date-localized-plugin \
26-
mkdocs-simple-hooks \
27-
plugins/mkdocs-git-committers-plugin-2
20+
scripts/install-mkdocs.sh
2821
- name: Cache Github Users
2922
uses: actions/cache@v3
3023
with:

scripts/install-mkdocs.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
3+
pip install \
4+
mkdocs-material \
5+
mkdocs-macros-plugin \
6+
mkdocs-literate-nav \
7+
mkdocs-git-authors-plugin \
8+
mkdocs-git-revision-date-localized-plugin \
9+
mkdocs-simple-hooks \
10+
plugins/mkdocs-git-committers-plugin-2

0 commit comments

Comments
 (0)