From d519566a734e9bef91966827fa327b4d2d7707b5 Mon Sep 17 00:00:00 2001 From: Elena G Blanco Date: Sun, 26 Nov 2023 11:31:37 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20Add=20release=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 0000000..58b5b38 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,18 @@ +name: Create Flutter app release +on: + workflow_dispatch: +jobs: + build: + runs-on: ubuntu-latest + defaults: + run: + working-directory: ./app + steps: + - uses: actions/checkout@v2 + - uses: subosito/flutter-action@v1 + - run: flutter pub get + - run: flutter build apk + - uses: actions/upload-artifact@v1 + with: + name: release-apk + path: build/app/outputs/apk/release/app-release.apk \ No newline at end of file