From 864a43ed14df63ce897819cdfcd8f9cb74a5629b Mon Sep 17 00:00:00 2001 From: jusax23 Date: Mon, 26 Feb 2024 12:44:22 +0100 Subject: [PATCH] apk build action --- .gitea/workflows/build.yml | 18 ++++++++++++++++++ 1 file changed, 18 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..f6c3bd2 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,18 @@ +on: + push: + tags: + - v* + +jobs: + build: + runs-on: default + container: + image: ghcr.io/cirruslabs/flutter:stable + steps: + - run: | + apt-get update + apt-get install nodejs + - name: Checkout Repository + uses: actions/checkout@v3 + - run: flutter --version + - run: flutter build apk --release \ No newline at end of file