Skip to content

Commit 82bc30c

Browse files
committed
Fix GitHub workflow not installing packages properly
1 parent af6f9fe commit 82bc30c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/mapbase_build-base.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,9 @@ jobs:
194194
- uses: actions/checkout@v3
195195

196196
- name: Install GCC/G++ multilib
197-
run: sudo apt-get install gcc-multilib g++-multilib
197+
run: |
198+
sudo apt-get update
199+
sudo apt-get install gcc-multilib g++-multilib
198200
199201
- name: Pick game
200202
if: inputs.project-group == 'game' || inputs.project-group == 'shaders'

0 commit comments

Comments
 (0)