Skip to content

Commit 856826e

Browse files
authored
Update release.yml
1 parent 8cc188e commit 856826e

File tree

1 file changed

+7
-20
lines changed

1 file changed

+7
-20
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,11 @@ on:
44
workflow_dispatch: # Manually triggered workflow
55

66
jobs:
7-
# Call the prerequisites workflow to download tools and set up environment variables
8-
prerequisites:
9-
uses: ./.github/workflows/prerequisites.yml # Reference your prerequisites.yml file
7+
# Build Android 12 GKI Kernel
8+
build-kernel-a12:
9+
uses: ./.github/workflows/build-kernel-a12.yml # Reference the build workflow you created for Android 12 GKI
10+
secrets: inherit # Inherit any secrets you need (if required)
1011

11-
# Example kernel builds (uncomment and use as needed)
12-
build-a12-kernel:
13-
uses: ./.github/workflows/build-kernel-a12.yml
14-
needs: prerequisites # Ensure prerequisites run first
15-
secrets: inherit
16-
#build-a13-kernel:
17-
# uses: ./.github/workflows/build-kernel-a13.yml
18-
# needs: prerequisites
19-
# secrets: inherit
20-
#build-a14-kernel:
21-
# uses: ./.github/workflows/build-kernel-a14.yml
22-
# needs: prerequisites
23-
# secrets: inherit
24-
#build-a15-kernel:
25-
# uses: ./.github/workflows/build-kernel-a15.yml
26-
# needs: prerequisites
27-
# secrets: inherit
12+
# Other steps of your release workflow (e.g., packaging, deployment, etc.)
13+
# Add additional steps here if needed
14+
# e.g., upload artifacts, deploy, etc.

0 commit comments

Comments
 (0)