diff options
author | Charles Pigott <charlespigott@googlemail.com> | 2020-10-10 13:39:37 +0100 |
---|---|---|
committer | Charles Pigott <charlespigott@googlemail.com> | 2020-10-10 15:02:06 +0100 |
commit | 13e1b13a4e559f19f39d83208b151c4618381f21 (patch) | |
tree | 79630b6425504e748d95d26404a28f6452cdbb02 | |
parent | 2073c8d67f6c8bee42eb49e37a89acfa8c45eac3 (diff) | |
download | openttd-13e1b13a4e559f19f39d83208b151c4618381f21.tar.xz |
Fix: [Actions] Call apt-get update before trying to install packages
-rw-r--r-- | .github/workflows/ci-build.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index ba30c2436..8786c079b 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -28,6 +28,7 @@ jobs: steps: - name: Install dependencies run: | + sudo apt-get update sudo apt-get install -y --no-install-recommends \ libfontconfig-dev \ libicu-dev \ |