Initial commit
Some checks reported errors
continuous-integration/drone/push Build encountered an error
Build / build (push) Failing after 18s
lint / lint (push) Failing after 9s
Docker Compose Test / test (push) Failing after 5s

This commit is contained in:
Sthope 2024-05-05 21:56:32 +02:00
parent 168b55171b
commit e0b8ed0d99
2 changed files with 1 additions and 3 deletions

View File

@ -11,7 +11,6 @@ steps:
path: /site
commands:
- /usr/local/bin/python -m pip install --upgrade pip
- pip install -U -r ./requirements.txt
- mkdocs build
- cp -r site/ /site
- chmod -R 777 /site

View File

@ -21,11 +21,10 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U -r requirements.txt
pip install mkdocs-material==7.1.9
- name: Build and deploy
run: |
pip install mkdocs-material==7.1.9
mkdocs build
cp -r site/ $GITHUB_WORKSPACE/site
chmod -R 777 $GITHUB_WORKSPACE/site