Skip to content

Bump screen_brightness from 2.0.0+1 to 2.1.1 #53

Bump screen_brightness from 2.0.0+1 to 2.1.1

Bump screen_brightness from 2.0.0+1 to 2.1.1 #53

Workflow file for this run

name: Build APK
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Download and install Java
uses: actions/setup-java@v4
with:
distribution: 'oracle'
java-version: '17'
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: 'stable'
cache: true
cache-key: 'flutter-:os:-:channel:-:version:-:arch:-:hash:'
cache-path: '${{ runner.tool_cache }}/flutter/:channel:-:version:-:arch:'
architecture: x64
# Output current flutter version
- run: flutter --version
# Get flutter dependencies.
- run: flutter pub get
# Build APK (Android)
- run: flutter build apk