Skip to content

3. Another Patch

3. Another Patch #61

Workflow file for this run

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]
steps:
- name: Checkout
uses: actions/checkout@v6.0.2
- name: Preparing to patch
uses: ./.github/actions/preparing
- 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