Skip to content

replace gif with mp4 #12

replace gif with mp4

replace gif with mp4 #12

Workflow file for this run

name: "Build & Release"
on:
pull_request:
branches:
- main
- master
push:
branches:
- main
- master
- develop
jobs:
build:
name: Build & Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: '17.0.7'
- uses: subosito/flutter-action@v1
with:
flutter-version: '3.1'
- run: flutter pub get
- run: flutter analyze
- run: flutter test
- run: flutter build apk --debug --split-per-abi
- uses: ncipollo/release-action@v1
with:
artifacts: "build/app/output/apk/debug/*"
tag: v1.0.${{github.run_number}}
token: ${{ secrets.TOKEN }}