From 84a6c63bd78d7db96fef4b319ad637712dfbe7a9 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 | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml
index 6d3b6c3..d3a1bf1 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
+    # - name: Install prerequisites
+    #   run: |
+    #     apt-get update
+    #     apt-get install -y xz-utils unzip
 
     - uses: https://gitea.com/actions/checkout@v4