Skip to content

Commit 3a7a2d5

Browse files
committed
Update packages before installing deps on Linux
1 parent 5c1c591 commit 3a7a2d5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci-workflow.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ jobs:
1515
uses: actions/checkout@v4
1616
- name: Install dependencies
1717
if: matrix.depsrc == 'system'
18-
run: sudo apt-get install libcurl4-openssl-dev
18+
run: |
19+
sudo apt-get update
20+
sudo apt-get -y install libcurl4-openssl-dev
1921
- name: Build
2022
run: PLATFORM=${{ matrix.platform }} CONFIG=${{ matrix.config }} PREMAKE_OPTS="--curl-src=${{ matrix.depsrc }}" ./Bootstrap.sh
2123
- name: Test

0 commit comments

Comments
 (0)