13 lines
221 B
YAML
13 lines
221 B
YAML
|
on:
|
||
|
push:
|
||
|
tags:
|
||
|
- v*
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: flutter
|
||
|
steps:
|
||
|
- name: Checkout Repository
|
||
|
uses: actions/checkout@v3
|
||
|
- run: flutter --version
|
||
|
- run: flutter build apk --release
|