Skip to content

Commit

Permalink
ci: apt update before installation
Browse files Browse the repository at this point in the history
  • Loading branch information
theomonnom committed Jul 14, 2023
1 parent ba7deb8 commit 45b66c7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/webrtc-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,9 @@ jobs:

- name: Install linux dependencies
if: ${{ matrix.target.os == 'ubuntu-latest' }}
run: sudo apt install -y ninja-build pkg-config openjdk-11-jdk
run: |
sudo apt update -y
sudo apt install -y ninja-build pkg-config openjdk-11-jdk
- name: Install macos dependencies
if: ${{ matrix.target.os == 'macos-latest' }}
Expand Down

0 comments on commit 45b66c7

Please sign in to comment.