Skip to content

Commit ed28d6e

Browse files
committed
ci: apt update before install
1 parent 294317b commit ed28d6e

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/test_and_release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ jobs:
4949

5050
- name: Install OSMesa for Linux
5151
if: matrix.config.os == 'ubuntu-latest'
52-
run: sudo apt-get install -y libosmesa6-dev libturbojpeg
52+
run: |
53+
sudo apt update
54+
sudo apt install -y libosmesa6-dev libturbojpeg
5355
5456
- name: Set Up Node
5557
uses: actions/setup-node@v6

0 commit comments

Comments
 (0)