From 9c8f9608b238fa8dbc70b411f8e3b01cb63ec207 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Wed, 7 Jun 2023 03:46:32 +0200 Subject: [PATCH 1/5] build(revanced-patcher): bump version --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 2438b2d..2d66c99 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -25,7 +25,7 @@ repositories { dependencies { implementation("org.jetbrains.kotlin:kotlin-reflect:1.8.20-RC") - implementation("app.revanced:revanced-patcher:9.0.0") + implementation("app.revanced:revanced-patcher:11.0.0") implementation("info.picocli:picocli:4.7.1") implementation("com.github.revanced:jadb:2531a28109") // updated fork implementation("com.android.tools.build:apksig:8.1.0-alpha09") From 1201f9edc5b426c3a453721878d55e59a6b254a4 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 7 Jun 2023 01:48:39 +0000 Subject: [PATCH 2/5] chore(release): 2.21.3-dev.1 [skip ci] ## [2.21.3-dev.1](https://github.com/revanced/revanced-cli/compare/v2.21.2...v2.21.3-dev.1) (2023-06-07) --- CHANGELOG.md | 2 ++ gradle.properties | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 08da342..7fb2109 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## [2.21.3-dev.1](https://github.com/revanced/revanced-cli/compare/v2.21.2...v2.21.3-dev.1) (2023-06-07) + ## [2.21.2](https://github.com/revanced/revanced-cli/compare/v2.21.1...v2.21.2) (2023-05-24) ## [2.21.2-dev.2](https://github.com/revanced/revanced-cli/compare/v2.21.2-dev.1...v2.21.2-dev.2) (2023-05-15) diff --git a/gradle.properties b/gradle.properties index 6c1cf3c..f73a83f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ kotlin.code.style = official -version = 2.21.2 +version = 2.21.3-dev.1 From 9de90703c8cc1b88020a577c82c0ecfb2c6d081f Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Mon, 12 Jun 2023 01:49:18 +0200 Subject: [PATCH 3/5] ci: remove unnecessary steps --- .github/workflows/release.yml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8b20eb4..324e0fc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,17 +23,6 @@ jobs: # 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 Node.js - uses: actions/setup-node@v3 - with: - node-version: "18" - cache: 'npm' - name: Setup semantic-release run: npm install - name: Release From 5f1843771efdb34db25f8383486393f474ace0c1 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Mon, 12 Jun 2023 01:50:05 +0200 Subject: [PATCH 4/5] ci: build before running semantic-release --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 324e0fc..8f31416 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,6 +23,10 @@ jobs: # https://github.com/cycjimmy/semantic-release-action#private-packages persist-credentials: false fetch-depth: 0 + - name: Build with Gradle + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: ./gradlew clean --no-daemon - name: Setup semantic-release run: npm install - name: Release From 16bb1a60fc4b65f8c451300bac7295fb135c44e7 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Mon, 12 Jun 2023 02:33:13 +0200 Subject: [PATCH 5/5] ci: add cache step --- .github/workflows/release.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8f31416..afb223c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,6 +23,16 @@ jobs: # https://github.com/cycjimmy/semantic-release-action#private-packages persist-credentials: false fetch-depth: 0 + - name: Cache + uses: actions/cache@v3 + with: + path: | + ${{ runner.home }}/.gradle/caches + ${{ runner.home }}/.gradle/wrapper + .gradle + build + node_modules + key: ${{ runner.os }}-gradle-npm-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties', 'package-lock.json') }} - name: Build with Gradle env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}