added ReX

Can patch ReX from now and fix 🐛
This commit is contained in:
yue374
2024-02-02 22:07:35 +07:00
parent 123d45a124
commit 8061a9360f
10 changed files with 130 additions and 3 deletions

View File

@@ -11,6 +11,7 @@ on:
options:
- 'All'
- 'Revanced'
- 'ReX'
- 'Revanced Extended'
- 'Revanced Extended Android 6,7'
- 'Revanced Extended Android 5'
@@ -44,6 +45,21 @@ jobs:
repository: ${{ github.repository }}
- name: Releasing APK files
uses: ./.github/actions/release
patch_rex:
name: Patch ReX
if: ${{ github.event.inputs.org == 'ReX' || github.event.inputs.org == 'All' || inputs.org == 'ReX' }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
- name: Preparing to patch
uses: ./.github/actions/preparing
- name: Patch apk
run: bash src/build/ReX.sh
env:
repository: ${{ github.repository }}
- name: Releasing APK files
uses: ./.github/actions/release
patch_rve:
name: Patch Revanced Extended
if: ${{ github.event.inputs.org == 'Revanced Extended' || github.event.inputs.org == 'All' || inputs.org == 'Revanced Extended' }}