Skip to content

Commit f0aca45

Browse files
authored
Update build-kernel-release.yml
1 parent 638b9aa commit f0aca45

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/build-kernel-release.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,28 +5,34 @@ permissions:
55
actions: write # Allows triggering actions
66

77
on:
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

1722
jobs:
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: |

0 commit comments

Comments
 (0)