From 9233852c85f448cbb2654fbf753f47434760e698 Mon Sep 17 00:00:00 2001 From: jusax23 Date: Mon, 26 Feb 2024 12:27:44 +0100 Subject: [PATCH] apk build action --- .gitea/workflows/build.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitea/workflows/build.yml diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..d2d6884 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,13 @@ +on: + push: + tags: + - v* + +jobs: + build: + runs-on: flutter + steps: + - name: Checkout Repository + uses: actions/checkout@v3 + - run: flutter --version + - run: flutter build apk --release \ No newline at end of file