Skip to content

downgrade device_info package for build_issue #16

downgrade device_info package for build_issue

downgrade device_info package for build_issue #16

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"]
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.24.2
- 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: oberhauser-dev/flutter-release-action@v0
with:
app-name: 'Weather App'
tag: v1.0.${{ github.run_number }}
token: ${{ secrets.TOKEN }}