-
-
Notifications
You must be signed in to change notification settings - Fork 198
30 lines (28 loc) · 803 Bytes
/
ci_.yml
File metadata and controls
30 lines (28 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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