16 lines
No EOL
298 B
YAML
16 lines
No EOL
298 B
YAML
on:
|
|
push:
|
|
tags:
|
|
- v*
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: flutter
|
|
steps:
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 18
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v3
|
|
- run: flutter --version
|
|
- run: flutter build apk --release |