From 19f2de422828232aca03e9925d31baacb3725fe5 Mon Sep 17 00:00:00 2001 From: 0xWheatyz Date: Fri, 6 Mar 2026 02:22:05 +0000 Subject: [PATCH] feat: moved from ubuntu compilation to alpine for speed --- .gitea/workflows/build.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 5f49c4d..bbec164 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -11,7 +11,13 @@ on: jobs: build-and-push: runs-on: ubuntu-latest + container: + image: docker:24-dind + options: --privileged steps: + - name: Install dependencies + run: apk add --no-cache git bash + - name: Checkout code uses: actions/checkout@v4