Explorar o código

ci: update default build selections in workflow

Set default values to true for most build options to streamline common use cases
TheWildJames hai 8 meses
pai
achega
a7b34b1f72
Modificáronse 1 ficheiros con 7 adicións e 8 borrados
  1. 7 8
      .github/workflows/main.yml

+ 7 - 8
.github/workflows/main.yml

@@ -26,12 +26,11 @@ on:
         description: "Build Bypass"
         type: boolean
         default: false
-        required: true
       # Build Selection
       build_a12_5_10:
         description: "Android 12 - 5.10"
         type: boolean
-        default: false
+        default: true
       build_a13_5_10:
         description: "Android 13 - 5.10"
         type: boolean
@@ -39,27 +38,27 @@ on:
       build_a13_5_15:
         description: "Android 13 - 5.15"
         type: boolean
-        default: false
+        default: true
       build_a14_5_15:
         description: "Android 14 - 5.15"
         type: boolean
-        default: false
+        default: true
       build_a14_6_1:
         description: "Android 14 - 6.1"
         type: boolean
-        default: false
+        default: true
       build_a15_6_6:
         description: "Android 15 - 6.6"
         type: boolean
-        default: false
+        default: true
       build_a16_6_12:
         description: "Android 16 - 6.12"
         type: boolean
-        default: false
+        default: true
       build_custom:
         description: "Custom Builds"
         type: boolean
-        default: false
+        default: true
 
 jobs:
   build-a12-5-10: