File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -5,28 +5,34 @@ permissions:
55 actions : write # Allows triggering actions
66
77on :
8- # push:
8+ push :
99 workflow_dispatch :
1010 inputs :
1111 make_release :
1212 description : ' Do you want to create a release?'
1313 required : true
1414 type : boolean
1515 default : false
16+ build_zuma :
17+ description : ' Do you want to build the Zuma kernel?'
18+ required : true
19+ type : boolean
20+ default : true
1621
1722jobs :
1823 build-kernel-a15-zuma :
24+ if : ${{ inputs.build_zuma }}
1925 uses : ./.github/workflows/build-kernel-a15-zuma.yml
2026 secrets : inherit
2127
2228 trigger-release :
2329 runs-on : ubuntu-latest
2430 needs :
2531 - build-kernel-a15-zuma
26- if : ${{ github.event. inputs.make_release == 'true' }}
32+ if : ${{ inputs.make_release }}
2733 env :
2834 REPO_OWNER : TheWildJames
29- REPO_NAME : android_kernel_google_zuma
35+ REPO_NAME : Sultan_KernelSU_SUSFS
3036 GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
3137 RELEASE_NAME : " *TEST BUILD* Sultan Kernel With KernelSU Next & SUSFS v1.5.3 *TEST BUILD*"
3238 RELEASE_NOTES : |
You can’t perform that action at this time.
0 commit comments