Skip to content

Commit

Permalink
Update CI configuration for new docs folder
Browse files Browse the repository at this point in the history
  • Loading branch information
ADubhlaoich committed Oct 1, 2024
1 parent f69d645 commit 5c7d677
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ jobs:
- name: Filter only docs changes
id: docs
run: |
files=$(git diff --name-only HEAD^ | egrep -v "^docs/" | egrep -v "^examples/" | egrep -v "^README.md")
docs_files=$(git diff --name-only HEAD^ | grep "^docs/")
files=$(git diff --name-only HEAD^ | egrep -v "^site/" | egrep -v "^examples/" | egrep -v "^README.md")
docs_files=$(git diff --name-only HEAD^ | grep "^site/")
if [ -z "$files" ]; then
echo "docs_only=true" >> $GITHUB_OUTPUT
else
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:
- name: Check if make docs builds
if: ${{ needs.checks.outputs.some_docs == 'true' }}
run: cd docs && make docs-ci
run: cd site && make docs-ci

unit-tests:
name: Unit Tests
Expand Down

0 comments on commit 5c7d677

Please sign in to comment.