From f87597276ced80a6abb5c4126f4d7a9270e308ed Mon Sep 17 00:00:00 2001 From: Ujwal Date: Wed, 25 Feb 2026 18:04:02 +0545 Subject: [PATCH] add release workflow for fdroid flutter version pinning --- .github/workflows/release.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..03e0358 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,12 @@ +name: release +on: + push: + tags: + - '*' +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: subosito/flutter-action@v2 + with: + flutter-version: '3.38.7' \ No newline at end of file