Эх сурвалжийг харах

Include chroot input and action in build.yml

Added support for chroot in the build workflow.
jimsterino98 2 сар өмнө
parent
commit
2d8159bbbe

+ 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