From 201e991ac422a984a60fbebfc2de9e95e74c0dfa Mon Sep 17 00:00:00 2001 From: servostar Date: Tue, 27 Aug 2024 19:36:24 +0200 Subject: [PATCH] added sudo to action runner --- .gitea/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 21c31e5..c2b5e1d 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -8,6 +8,10 @@ jobs: steps: - name: Check out repository code uses: actions/checkout@v3 + - name: Install dependencies for Nix setup action + run: | + apt update -y + apt install sudo -y - name: Setup Nix uses: cachix/install-nix-action@v27 with: