From 5cae227551023844114a9d1195cb0945843e5cdf Mon Sep 17 00:00:00 2001 From: 0xsharkboy Date: Mon, 5 Aug 2024 07:43:19 +0200 Subject: [PATCH] workflows: divide into 2 jobs *to avoid out of space issue --- .github/workflows/magisk_patch.yml | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/.github/workflows/magisk_patch.yml b/.github/workflows/magisk_patch.yml index c50b8d9..de1f6bc 100644 --- a/.github/workflows/magisk_patch.yml +++ b/.github/workflows/magisk_patch.yml @@ -4,14 +4,32 @@ on: workflow_dispatch: jobs: - patch_boot: - name: Download & patch boot images + patch_boot_s10: + name: Patch boot images for S10 series runs-on: ubuntu-latest steps: - name: Patch boot images with Magisk uses: 0xsharkboy/magisk-patch-action@main with: - devices: beyond0lte,beyond1lte,beyond2lte,d1,d2s,d2x,f62 + devices: beyond0lte,beyond1lte,beyond2lte,beyondx ota_link: https://raw.githubusercontent.com/Evolution-XYZ/OTA/udc/builds/ + release_title: Magisk patched boot images for S10 series + github_token: ${{ secrets.TOKEN }} + + - name: Clean downloaded zip packages + run: find ./script/ -type f -name '*.zip' -delete + + patch_boot_n10_f62: + name: Patch boot images for Note 10 series and F62 + needs: patch_boot_s10 + runs-on: ubuntu-latest + + steps: + - name: Patch boot images with Magisk + uses: 0xsharkboy/magisk-patch-action@main + with: + devices: d1,d2s,d2x,f62 + ota_link: https://raw.githubusercontent.com/Evolution-XYZ/OTA/udc/builds/ + release_title: Magisk patched boot images for Note 10 series and f62 github_token: ${{ secrets.TOKEN }} \ No newline at end of file