ソースを参照

Enhance build.yml with TTL support

Added TTL input and job support to the build workflow.
jimsterino98 2 ヶ月 前
コミット
f0e516946c
1 ファイル変更7 行追加0 行削除
  1. 7 0
      .github/workflows/build.yml

+ 7 - 0
.github/workflows/build.yml

@@ -51,6 +51,9 @@ on:
       optimization:
         required: true
         type: string
+      ttl:
+        required: true
+        type: string
 
 jobs:
   build-samsung-gki:
@@ -256,6 +259,10 @@ jobs:
         if: inputs.ipv6_nat == 'true'
         uses: ./.github/actions/IPv6_NAT
 
+      - name: Add TTL support
+        if: inputs.ttl == 'true'
+        uses: ./.github/actions/TTL
+
       - name: add optimization patches
         if: inputs.optimization == 'true'
         uses: ./.github/actions/optimization