Skip to content

Commit

Permalink
Bumped Github Android Build to Flutter SDK 3.24.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ilteen committed Sep 9, 2024
1 parent 7e3f1d2 commit ccda4a5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release_apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'
cache: 'gradle'
check-latest: true
- uses: subosito/flutter-action@v1
- uses: subosito/flutter-action@v2
with:
channel: 'beta'

- name: Set up Flutter 3.16.0
- name: Set up Flutter 3.24.2
run: |
FLUTTER_URL="https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.16.0-stable.tar.xz"
FLUTTER_URL="https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.24.2-stable.tar.xz"
FLUTTER_DIR="$HOME/flutter"
mkdir -p $FLUTTER_DIR
curl -L $FLUTTER_URL -o /tmp/flutter.tar.xz
Expand All @@ -34,7 +34,7 @@ jobs:
run: flutter pub get
- working-directory: ./open_earable
run: flutter build apk
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v3
with:
name: release-apk
path: open_earable/build/app/outputs/apk/release/app-release.apk
Expand All @@ -45,7 +45,7 @@ jobs:
needs: build
steps:
- name: Download APK Artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: release-apk
path: ${{ github.workspace }}/release-apk
Expand Down

0 comments on commit ccda4a5

Please sign in to comment.