Skip to content

Commit

Permalink
p6
Browse files Browse the repository at this point in the history
  • Loading branch information
krossgg committed Dec 18, 2024
1 parent b9da6d4 commit 120baff
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,31 +15,31 @@ jobs:
build:
name: build docs
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./documentation
steps:
- uses: actions/checkout@v4
with:
# ref: '1.20.1'
sparse-checkout: 'documentation'
- run: |
cd './documentation/'
ls
sparse-checkout: './documentation'
- uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'
- run: pip install -r requirements.txt
- run: pip install -r ./requirements.txt
- uses: actions/cache@v4
with:
key: 'mkdocs-cache'
path: '.cache'
path: './documentation/.cache'
- name: Build static files
id: mkdocs
run: mkdocs build
- name: Upload pages as artifact
id: artifact
uses: actions/upload-pages-artifact@v3
with:
path: 'site/'
path: './documentation/site/'

deploy:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 120baff

Please sign in to comment.