Skip to content

Commit a311302

Browse files
authored
add apt-get update before gcc-multilib installation (#866)
1 parent 88a23f5 commit a311302

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/deploy.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,9 @@ jobs:
143143
144144
- name: Install gcc-multilib
145145
# gcc-multilib allows clang to find gnu libraries properly
146-
run: sudo apt install -y gcc-multilib
146+
run: |
147+
sudo apt-get update
148+
sudo apt install -y gcc-multilib
147149
148150
- name: Install stable toolchain
149151
if: steps.install_llvm.outcome == 'success' && steps.install_llvm.conclusion == 'success'

0 commit comments

Comments
 (0)