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