forked from LineageOS/android_kernel_google_gs201
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4949314
commit 492c302
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: "Apply divestOS patches" | ||
|
||
on: | ||
workflow_dispatch: # button shown only when in default branch | ||
|
||
# Sets permissions of the GITHUB_TOKEN to allow pushing via github token | ||
permissions: | ||
contents: write # allow git push | ||
|
||
jobs: | ||
sync: | ||
runs-on: ubuntu-latest | ||
name: "Get divest + AXP patches" | ||
|
||
steps: | ||
|
||
- name: Checkout dOS | ||
uses: actions/checkout@v4 | ||
with: | ||
path: dos | ||
repository: AXP-OS/build | ||
ref: ${{ github.head_ref || github.ref_name }} | ||
submodules: true | ||
lfs: true | ||
|
||
- name: Checkout repo | ||
uses: actions/checkout@v4 | ||
with: | ||
path: dos/Build/LineageOS-20.0/kernel/google/gs201/private | ||
submodules: true | ||
lfs: true | ||
|
||
- name: debug | ||
run: | | ||
ls -la | ||
ls -la dos | ||
ls -la dos/Build/LineageOS-20.0 |