From 14a7703548b7e9929eb3f4b9834bbc3a25206115 Mon Sep 17 00:00:00 2001 From: ange Date: Fri, 29 Nov 2024 04:13:50 +0000 Subject: [PATCH] feat: cicd to build apk --- .gitea/workflows/apk.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitea/workflows/apk.yaml diff --git a/.gitea/workflows/apk.yaml b/.gitea/workflows/apk.yaml new file mode 100644 index 0000000..5085cf8 --- /dev/null +++ b/.gitea/workflows/apk.yaml @@ -0,0 +1,17 @@ +on: + push: + branches: + - dev + tags: + - '*' + +jobs: + build: + runs-on: debian + defaults: + run: + working-directory: dialer + steps: + - uses: actions/checkout@v1 + - run: | + ./build.sh # actually doesn't work bc no docker in debian