|
|
@@ -5,7 +5,6 @@ permissions:
|
|
|
actions: write # Allows triggering actions
|
|
|
|
|
|
on:
|
|
|
- #push:
|
|
|
workflow_dispatch:
|
|
|
inputs:
|
|
|
build_a12:
|
|
|
@@ -33,27 +32,27 @@ jobs:
|
|
|
build-kernel-a12-5-10:
|
|
|
uses: ./.github/workflows/build-kernel-a12-5.10.yml
|
|
|
secrets: inherit
|
|
|
- if: ${{ github.event.inputs.build_a12 || github.event.inputs.build_a12 == '' }}
|
|
|
+ if: ${{ inputs.build_a12 }}
|
|
|
|
|
|
build-kernel-a13-5-10:
|
|
|
uses: ./.github/workflows/build-kernel-a13-5.10.yml
|
|
|
secrets: inherit
|
|
|
- if: ${{ github.event.inputs.build_a13 == 'true' || github.event.inputs.build_a13 == '' }}
|
|
|
+ if: ${{ inputs.build_a13 }}
|
|
|
|
|
|
build-kernel-a13-5-15:
|
|
|
uses: ./.github/workflows/build-kernel-a13-5.15.yml
|
|
|
secrets: inherit
|
|
|
- if: ${{ github.event.inputs.build_a13 == 'true' || github.event.inputs.build_a13 == '' }}
|
|
|
+ if: ${{ inputs.build_a13 }}
|
|
|
|
|
|
build-kernel-a14-5-15:
|
|
|
uses: ./.github/workflows/build-kernel-a14-5.15.yml
|
|
|
secrets: inherit
|
|
|
- if: ${{ github.event.inputs.build_a14 == 'true' || github.event.inputs.build_a14 == '' }}
|
|
|
+ if: ${{ inputs.build_a14 }}
|
|
|
|
|
|
build-kernel-a14-6-1:
|
|
|
uses: ./.github/workflows/build-kernel-a14-6.1.yml
|
|
|
secrets: inherit
|
|
|
- if: ${{ github.event.inputs.build_a14 == 'true' || github.event.inputs.build_a14 == '' }}
|
|
|
+ if: ${{ inputs.build_a14 }}
|
|
|
|
|
|
trigger-release:
|
|
|
runs-on: ubuntu-latest
|