We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4949314 commit 492c302Copy full SHA for 492c302
.github/workflows/patch.yml
@@ -0,0 +1,37 @@
1
+name: "Apply divestOS patches"
2
+
3
+on:
4
+ workflow_dispatch: # button shown only when in default branch
5
6
+# Sets permissions of the GITHUB_TOKEN to allow pushing via github token
7
+permissions:
8
+ contents: write # allow git push
9
10
+jobs:
11
+ sync:
12
+ runs-on: ubuntu-latest
13
+ name: "Get divest + AXP patches"
14
15
+ steps:
16
17
+ - name: Checkout dOS
18
+ uses: actions/checkout@v4
19
+ with:
20
+ path: dos
21
+ repository: AXP-OS/build
22
+ ref: ${{ github.head_ref || github.ref_name }}
23
+ submodules: true
24
+ lfs: true
25
26
+ - name: Checkout repo
27
28
29
+ path: dos/Build/LineageOS-20.0/kernel/google/gs201/private
30
31
32
33
+ - name: debug
34
+ run: |
35
+ ls -la
36
+ ls -la dos
37
+ ls -la dos/Build/LineageOS-20.0
0 commit comments