1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
From 06d1a9bce91f2acdf4861e9aa3aa463bddcf3ee2 Mon Sep 17 00:00:00 2001
From: Mike Walters <mike@flomp.net>
Date: Wed, 20 Oct 2021 12:08:32 +0100
Subject: [PATCH 23/31] actions: run apt update
---
.github/workflows/build.yml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 86af296..4827c48 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -28,7 +28,9 @@ jobs:
if: matrix.os == 'macos-latest'
- name: Install dependencies (Ubuntu)
- run: sudo apt install libfftw3-dev libliquid-dev qtbase5-dev
+ run: |
+ sudo apt update
+ sudo apt install libfftw3-dev libliquid-dev qtbase5-dev
if: startsWith(matrix.os, 'ubuntu-')
- name: Create Build Environment
--
2.35.1
|