ci: try to fix ubuntu CI failing to find groff package

This commit is contained in:
Eric Wasylishen 2022-01-15 18:19:42 -07:00
parent d5c7ee6ca6
commit 8d31f12c8b
1 changed files with 2 additions and 1 deletions

View File

@ -26,7 +26,8 @@ jobs:
- name: Linux Build - name: Linux Build
if: runner.os == 'Linux' if: runner.os == 'Linux'
run: | run: |
sudo apt install -y groff sudo apt-get update
sudo apt-get install -y groff
./build-linux-64.sh ./build-linux-64.sh
- name: macOS Build - name: macOS Build