From b6fa595326abb7bd84eea00f33507a9b8b5ea1ec Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 31 Mar 2023 03:12:27 +0700 Subject: [PATCH] fix(deps): update kotlin monorepo to v1.8.20 * fix(deps): update kotlin monorepo to v1.8.20 --- .github/workflows/compile.yml | 42 +++++++++++++++++++++++++++++++++++ android/build.gradle | 2 +- 2 files changed, 43 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/compile.yml diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml new file mode 100644 index 0000000000..dbda47aafe --- /dev/null +++ b/.github/workflows/compile.yml @@ -0,0 +1,42 @@ +name: 🤖 Compile Task Force + +on: + workflow_dispatch: + pull_request: + +jobs: + build: + name: 🤖 Compile Task Force + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + # Make sure the release step uses its own credentials: + # https://github.com/cycjimmy/semantic-release-action#private-packages + persist-credentials: false + fetch-depth: 0 + - name: Setup JDK + uses: actions/setup-java@v3 + with: + java-version: '17' + distribution: 'zulu' + cache: 'gradle' + - name: Setup Flutter + uses: subosito/flutter-action@v2 + with: + channel: 'stable' + cache: true + - name: Install Flutter dependencies + run: flutter pub get + - name: Generate files with Builder + run: flutter packages pub run build_runner build --delete-conflicting-outputs + - name: Build with Flutter + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: flutter build apk + - name: Upload build + uses: actions/upload-artifact@v3 + with: + name: revanced-manager + path: build/app/outputs/flutter-apk/app-release.apk diff --git a/android/build.gradle b/android/build.gradle index 247194c0ca..7c283d7527 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -1,6 +1,6 @@ buildscript { ext.cronetVersion = '102.5005.125' - ext.kotlin_version = '1.7.10' + ext.kotlin_version = '1.8.20' repositories { google() mavenCentral()