From e3497a2025a45d5ac0518fff79f7ef34bb64ca16 Mon Sep 17 00:00:00 2001 From: anorien90 Date: Tue, 9 Dec 2025 13:15:33 +0100 Subject: [PATCH] added worker for testing --- .gitea/workflows/build_apk.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .gitea/workflows/build_apk.yml diff --git a/.gitea/workflows/build_apk.yml b/.gitea/workflows/build_apk.yml new file mode 100644 index 0000000..dc83409 --- /dev/null +++ b/.gitea/workflows/build_apk.yml @@ -0,0 +1,22 @@ +name: Test setup and build APKs +run-name: ${{ gitea.actor }} is building the Docker Images for ${{ gitea.repository }} +on: [push] +branches: + - master + +jobs: + Build-and-Create-Development-Environment: # Renamed job for clarity + runs-on: ubuntu-latest + + container: + volumes: + - /prod/data/apk/:/prod/data/apk/:rw # host_path:container_path:mode (rw or ro) + + steps: + # 1. Fetch all history for cross-branch operations + - name: Check out Repository + uses: actions/checkout@v4 + + - name: Start setup proces + run: | + ls -la