From 7b056454ab8688e477698195baae0d9d21aa6cbb Mon Sep 17 00:00:00 2001 From: Remy Moll <me@moll.re> Date: Sat, 18 May 2024 15:39:59 +0200 Subject: [PATCH] no prerequisities anymore? --- .gitea/workflows/build.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 6d3b6c3..26ed1fe 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -8,13 +8,13 @@ name: Build and docker image jobs: build: name: Build - runs-on: k8s + runs-on: ubuntu-latest steps: - name: Install prerequisites run: | - apt-get update - apt-get install -y xz-utils unzip + apt update + apt install -y docker - uses: https://gitea.com/actions/checkout@v4