16 lines
340 B
YAML
16 lines
340 B
YAML
|
on:
|
||
|
push:
|
||
|
tags:
|
||
|
- v*
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: default
|
||
|
container:
|
||
|
image: ghcr.io/cirruslabs/flutter:stable
|
||
|
steps:
|
||
|
- run: apt-get update && apt-get install nodejs -y
|
||
|
- name: Checkout Repository
|
||
|
uses: actions/checkout@v3
|
||
|
- run: flutter --version
|
||
|
- run: flutter build apk --release
|