ci: move workflow_dispatch to versioned ci workflow

Signed-off-by: Faris <rissu.ntk@gmail.com>
This commit is contained in:
Ylarod
2025-11-09 19:53:47 +08:00
committed by ShirkNeko
parent 5ce6c210c4
commit 05cca26075
6 changed files with 35 additions and 17 deletions

View File

@@ -1,37 +1,20 @@
name: Build Android GKI Image
on:
workflow_call:
workflow_dispatch:
inputs:
debug:
description: 'Build debug kernel'
required: false
type: boolean
default: false
jobs:
build-a12-kernel:
uses: ./.github/workflows/build-kernel-a12.yml
secrets: inherit
with:
debug: ${{ github.event.inputs.debug || false }}
build-a13-kernel:
uses: ./.github/workflows/build-kernel-a13.yml
secrets: inherit
with:
debug: ${{ github.event.inputs.debug || false }}
build-a14-kernel:
uses: ./.github/workflows/build-kernel-a14.yml
secrets: inherit
with:
debug: ${{ github.event.inputs.debug || false }}
build-a15-kernel:
uses: ./.github/workflows/build-kernel-a15.yml
secrets: inherit
with:
debug: ${{ github.event.inputs.debug || false }}
build-a16-kernel:
uses: ./.github/workflows/build-kernel-a16.yml
secrets: inherit
with:
debug: ${{ github.event.inputs.debug || false }}