Skip to content

project updated to flutter 3.24.2, updated all the packages #10

project updated to flutter 3.24.2, updated all the packages

project updated to flutter 3.24.2, updated all the packages #10

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Dart
on:
push:
branches: ["main","retrofit-way"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version: 3.22.0
- run: flutter --version
- run: flutter pub get
- run: flutter build apk --debug --split-per-abi -t lib/main.dart
- run: flutter build appbundle
- name: Push to Releases
uses: ncipollo/release-action@v1
with:
artifacts: "build/app/outputs/apk/debug/*,build/ios/iphoneos/app.ipa"
tag: v1.0.${{ github.run_number }}
token: ${{ secrets.TOKEN }}