Trigger Release on Workflow Completion #2
Workflow file for this run
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
name: Release | ||
on: | ||
workflow_dispatch: # Manually triggered workflow | ||
jobs: | ||
# Call the prerequisites workflow to download tools and set up environment variables | ||
prerequisites: | ||
uses: ./.github/workflows/prerequisites.yml # Reference your prerequisites.yml file | ||
# Example kernel builds (uncomment and use as needed) | ||
build-a12-kernel: | ||
uses: ./.github/workflows/build-kernel-a12.yml | ||
Check failure on line 14 in .github/workflows/release.yml
|
||
secrets: inherit | ||
#build-a13-kernel: | ||
# uses: ./.github/workflows/build-kernel-a13.yml | ||
# secrets: inherit | ||
#build-a14-kernel: | ||
# uses: ./.github/workflows/build-kernel-a14.yml | ||
# secrets: inherit | ||
#build-a15-kernel: | ||
# uses: ./.github/workflows/build-kernel-a15.yml | ||
# secrets: inherit |