From 0202a2b3a07085d8a60f417bc909d3a7680c837e Mon Sep 17 00:00:00 2001 From: Rosemary Witchaven <32779090+in1tiate@users.noreply.github.com> Date: Sun, 22 Aug 2021 23:58:00 -0500 Subject: [PATCH] run apt-get update before installing dependencies --- .github/workflows/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e9c85fd..035b311 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,7 +19,9 @@ jobs: # Runs a single command using the runners shell - name: Install dependencies - run: sudo apt-get install qt5-default libqt5websockets5-dev g++ make + run: | + sudo apt-get update + sudo apt-get install qt5-default libqt5websockets5-dev g++ make # Runs a set of commands using the runners shell - name: qmake and build