Create cd.yml (#32)

This commit is contained in:
Vadim 2023-02-15 13:59:10 +03:00 committed by GitHub
parent 0c0e4eeb3b
commit fdd00a2646
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

36
.github/workflows/cd.yml vendored Normal file
View file

@ -0,0 +1,36 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Build Apk
on:
push:
tags:
- "v*.*.*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: "stable"
- name: Check flutter version
run: flutter --version
- name: Install dependencies
run: flutter pub get
- name: Generate intl
run: flutter pub run intl_utils:generate
- name: Analyze project source
run: flutter analyze
- name: Build Apk
run: flutter build apk --release