Skip to content

Commit 0684a09

Browse files
committed
Run apt update before apt install
1 parent cd469d7 commit 0684a09

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,10 @@ jobs:
4141
- uses: actions/checkout@v6
4242
with:
4343
submodules: true
44-
- name: Install Sphinx
45-
run: sudo apt install sphinx-doc python3-sphinx
44+
- name: Install Sphinx-doc
45+
run: |
46+
sudo apt update
47+
sudo apt install -y sphinx-doc python3-sphinx
4648
- name: Install gettext
4749
run: sudo apt-get install -y gettext
4850
- name: Install git-restore-mtime

0 commit comments

Comments
 (0)