Browse Source

Modify GitHub Actions workflow inputs

Updated default values for inputs and added new optimization input.
jimsterino98 5 tháng trước cách đây
mục cha
commit
17b3cce0b6
1 tập tin đã thay đổi với 11 bổ sung1 xóa
  1. 11 1
      .github/workflows/main.yml

+ 11 - 1
.github/workflows/main.yml

@@ -69,12 +69,21 @@ on:
         options:
           - yes
           - no
-        default: no
+        default: yes
 
       ntsync:
         description: "add ntsync?"
         required: true
         type: choice
+        options:
+          - yes
+          - no
+        default: yes
+
+      optimizations:
+        description: "add optimizations from kernel patches repo?"
+        required: true
+        type: choice
         options:
           - yes
           - no
@@ -94,6 +103,7 @@ jobs:
       droidspace: ${{ inputs.droidspace }}
       ntsync: ${{ inputs.ntsync }}
       release_type: ${{ inputs.release_type }}
+      optimizations: ${{ inputs.optimizations }}
 
   release:
     runs-on: ubuntu-latest