CI: apt update before installing doc dependencies

Caused a 404 not found error
This commit is contained in:
patrick96 2021-01-24 15:52:16 +01:00 committed by Patrick Ziegler
parent 4154943f69
commit 04344aa0e7
1 changed files with 3 additions and 1 deletions

View File

@ -18,7 +18,9 @@ jobs:
with:
ref: ${{ github.event.inputs.ref }}
- name: Install Dependencies
run: sudo apt-get install -y python3-sphinx
run: |
sudo apt-get update
sudo apt-get install -y python3-sphinx
- name: Build Documentation
run: |
mkdir -p build