Skip to content

Commit

Permalink
Fix doc publishing (#893)
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalberger authored Dec 30, 2024
1 parent ef06945 commit 30184db
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/publish-develop-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:
run: pip install -r requirements.txt
working-directory: ./docs
- name: Install Required Libraries
run: apt-get install pngquant
run: |
sudo apt-get update
sudo apt-get install -y pngquant
- name: Configure Git
run: |
git config --global user.name "Build Server"
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/publish-release-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ jobs:
run: pip install -r requirements.txt
working-directory: ./docs
- name: Install Required Libraries
run: apt-get install pngquant
run: |
sudo apt-get update
sudo apt-get install -y pngquant
- name: Configure Git
run: |
git config --global user.name "Build Server"
Expand Down

0 comments on commit 30184db

Please sign in to comment.