From a555d5b0fd3e916e09030498b9a04b1a15d28523 Mon Sep 17 00:00:00 2001 From: Elena G Blanco Date: Tue, 15 Aug 2023 12:25:01 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20Relocate=20GitHub=20Action?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/dart.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/dart.yaml diff --git a/.github/workflows/dart.yaml b/.github/workflows/dart.yaml new file mode 100644 index 0000000..e732228 --- /dev/null +++ b/.github/workflows/dart.yaml @@ -0,0 +1,11 @@ +name: Flutter CI +on: + workflow_dispatch: +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: subosito/flutter-action@v1 + - run: flutter pub get + - run: flutter build apk \ No newline at end of file