From 679da69755f463245f4cf4ec5aafe634ca7c9c97 Mon Sep 17 00:00:00 2001 From: jusax23 Date: Mon, 26 Feb 2024 12:31:18 +0100 Subject: [PATCH] apk build action --- .gitea/workflows/build.yml | 16 ++++++++++++++++ 1 file changed, 16 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..5447047 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,16 @@ +on: + push: + tags: + - v* + +jobs: + build: + runs-on: flutter + steps: + - uses: actions/setup-node@v4 + with: + node-version: 18 + - name: Checkout Repository + uses: actions/checkout@v3 + - run: flutter --version + - run: flutter build apk --release \ No newline at end of file