From 81655f924524be5e01d6475e4d4dc774c9d010c5 Mon Sep 17 00:00:00 2001 From: Mitchell Krog Date: Mon, 21 Jun 2021 11:22:57 +0200 Subject: [PATCH] Run installs as sudo --- .github/workflows/action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index f99b2abbd..0d5dbfa8d 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -24,10 +24,10 @@ jobs: - name: Install Nginx Stable run: | - add-apt-repository -y ppa:nginx/stable - apt-get update - apt-get install -y --assume-yes nginx-extras - apt-get -y install dos2unix + sudo add-apt-repository -y ppa:nginx/stable + sudo apt-get update + sudo apt-get install -y --assume-yes nginx-extras + sudo apt-get -y install dos2unix - name: Run build