瀏覽代碼

Include chroot input and action in build.yml

Added support for chroot in the build workflow.
jimsterino98 2 月之前
父節點
當前提交
2d8159bbbe
共有 1 個文件被更改,包括 7 次插入0 次删除
  1. 7 0
      .github/workflows/build.yml

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

@@ -39,6 +39,9 @@ on:
       droidspace:
         required: true
         type: string
+      chroot:
+        required: true
+        type: string
       ntsync:
         required: true
         type: string
@@ -256,6 +259,10 @@ jobs:
         with:
           kernel_version: ${{ inputs.kernel_version }}
 
+      - name: Add ubuntu-chroot support
+        if: inputs.chroot == 'true'
+        uses: ./.github/actions/chroot
+
       - name: Add ntsync
         if: inputs.ntsync == 'true'
         uses: ./.github/actions/ntsync