Skip to content

Commit

Permalink
Add apt-get update to CI build workflow
Browse files Browse the repository at this point in the history
This should fix the current 404 we're seeing while trying to run CI.
  • Loading branch information
nwf committed Sep 18, 2022
1 parent a2dc2eb commit 2f47c16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Install latex
run: sudo apt-get install -y --no-install-recommends make texlive-plain-generic texlive-latex-base texlive-latex-recommended texlive-latex-extra texlive-science texlive-fonts-recommended texlive-fonts-extra texlive-bibtex-extra texlive-extra-utils biber latexmk
run: sudo apt-get update && sudo apt-get install -y --no-install-recommends make texlive-plain-generic texlive-latex-base texlive-latex-recommended texlive-latex-extra texlive-science texlive-fonts-recommended texlive-fonts-extra texlive-bibtex-extra texlive-extra-utils biber latexmk
- name: Build document
run: make
- name: Upload artifact
Expand Down

0 comments on commit 2f47c16

Please sign in to comment.