CI: apt update before installing doc dependencies
Caused a 404 not found error
This commit is contained in:
parent
4154943f69
commit
04344aa0e7
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@ -18,7 +18,9 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
ref: ${{ github.event.inputs.ref }}
|
ref: ${{ github.event.inputs.ref }}
|
||||||
- name: Install Dependencies
|
- 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
|
- name: Build Documentation
|
||||||
run: |
|
run: |
|
||||||
mkdir -p build
|
mkdir -p build
|
||||||
|
Loading…
Reference in New Issue
Block a user