Skip to content

bug-fix-ui-improve-v2-model #22

bug-fix-ui-improve-v2-model

bug-fix-ui-improve-v2-model #22

Workflow file for this run

on:
push:
branches:
- main
name: Build My Apps
jobs:
build:
name: Build and Release new apk
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: '17'
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- run: flutter pub get
- run: flutter build apk --release --split-per-abi
- name: Push to Releases
uses: ncipollo/release-action@v1
with:
artifacts: "build/app/outputs/apk/release/*"
tag: v2.0.0
token: ${{ secrets.TOKEN }}