From 99323694a34013c53df33af2972f1db5f360a269 Mon Sep 17 00:00:00 2001 From: Arnie Date: Fri, 12 Jun 2026 20:54:45 +0200 Subject: [PATCH] Remove CI --- .gitea/workflows/build.yaml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .gitea/workflows/build.yaml diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml deleted file mode 100644 index 233f3a6..0000000 --- a/.gitea/workflows/build.yaml +++ /dev/null @@ -1,27 +0,0 @@ -name: build -on: - push: - branches: [main] - tags: ['*'] -concurrency: - group: ${{ github.ref }} - cancel-in-progress: true -jobs: - build: - runs-on: ubuntu-latest - container: - image: docksee/nixos-gitea:${{ vars.NIX_IMAGE_VERSION }} - steps: - - uses: actions/checkout@v5 - with: - fetch-depth: 0 - - name: Check runner arch - run: uname -m - - name: Unit tests - run: nix develop --command gradle --no-daemon :app:test - - name: Build release APKs - run: nix develop --command gradle --no-daemon :app:assembleRelease - - uses: actions/upload-artifact@v3 - with: - name: android-webview-kiosk-apk - path: app/build/outputs/apk/*/release/*.apk