Skip to content

Commit

Permalink
Fix failing GitHub action to deploy docs
Browse files Browse the repository at this point in the history
Our doc build started failing due to a change in the azure images. The
failure is the same as what is reported in this issue:
actions/runner-images#7603.

The fix described there is to call `sudo apt-get update`, which is the
change here.
  • Loading branch information
llvm-beanz committed Dec 14, 2023
1 parent e64a254 commit 97bb9c7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/jekyll-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
uses: actions/configure-pages@v2
- name: Install dependencies
run: |
sudo apt-get update
sudo apt -y install texlive
sudo apt -y install texlive-latex-extra
curl -fsSL https://github.com/jgm/pandoc/releases/download/3.1.9/pandoc-3.1.9-1-amd64.deb -o pandoc.deb
Expand Down

0 comments on commit 97bb9c7

Please sign in to comment.