Skip to content

Commit

Permalink
Fix documentation generation job
Browse files Browse the repository at this point in the history
  • Loading branch information
piotr-grodek-dsai committed Nov 3, 2023
1 parent 8bfd46e commit 3b8f555
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/doumentation.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: Build documentation

on:
push:
Expand All @@ -16,12 +16,12 @@ jobs:
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements-dev.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install Dependencies
run: pip install -r requirements.txt
run: pip install -r requirements-dev.txt

- name: Build docs
run: ./build_docs.sh
Expand Down

0 comments on commit 3b8f555

Please sign in to comment.