mirror of
https://github.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root.git
synced 2026-07-28 15:23:05 +00:00
31 lines
No EOL
858 B
YAML
31 lines
No EOL
858 B
YAML
name: 3. Another Patch
|
|
permissions: write-all
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
Patch-Xposed:
|
|
name: Patch Xposed
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
run: [1, 2, 3]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6.0.2
|
|
- name: Preparing to patch
|
|
uses: ./.github/actions/preparing
|
|
with:
|
|
install_bouncy_castle: 'true'
|
|
- name: Check github connection
|
|
id: check-gh-xposed
|
|
run: bash src/etc/connection.sh
|
|
- name: Patch apk
|
|
id: patch-xposed
|
|
if: steps.check-gh-xposed.outputs.internet_error == '0'
|
|
run: bash src/build/Xposed.sh ${{ matrix.run }}
|
|
- name: Releasing APK files
|
|
id: release-xposed
|
|
if: steps.check-gh-xposed.outputs.internet_error == '0'
|
|
uses: ./.github/actions/release |