From 71af260baf9463fc11edb5ae3821c9a0da3c6ac0 Mon Sep 17 00:00:00 2001 From: Arseniy Zaostrovnykh <70532144+arseniy-sonar@users.noreply.github.com> Date: Tue, 21 Mar 2023 13:52:55 +0100 Subject: [PATCH] Fix Build&Deploy action: update package list before installing libkrb5-dev --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f054897ed9..bd0b4b6bf9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,6 +18,7 @@ jobs: - name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built. working-directory: frontend run: | + sudo apt-get update sudo apt-get install libkrb5-dev -y npm install npm run predeploy