Explorar o código

Fix patch rejects artifact naming to ensure uniqueness

- Updated Patch-Rejects artifact name to match other artifacts pattern
- Added KSUVER, module_check_bypass variant to make names unique
- Prevents 409 Conflict errors when multiple builds have patch rejects
- Name format: WKSU-{KSUVER}-{android}-{kernel}.{sublevel}-{patch_level}-{variant}-Patch-Rejects
TheWildJames hai 11 meses
pai
achega
30ce17feef
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      .github/workflows/build.yml

+ 1 - 1
.github/workflows/build.yml

@@ -536,7 +536,7 @@ jobs:
         if: ${{ always() && env.REJ_COUNT != '0' }}
         uses: actions/upload-artifact@v4
         with:
-          name: Patch-Rejects-${{ inputs.android_version }}-${{ inputs.kernel_version }}.${{ env.ACTUAL_SUBLEVEL || inputs.sub_level }}-${{ inputs.os_patch_level }}
+          name: WKSU-${{ env.KSUVER }}-${{ inputs.android_version }}-${{ inputs.kernel_version }}.${{ env.ACTUAL_SUBLEVEL || inputs.sub_level }}-${{ inputs.os_patch_level }}-${{ matrix.apply_module_check_bypass && 'Module_Check_Bypass' || 'Normal' }}-Patch-Rejects
           path: patch-rejects
 
       - name: Upload Boot Image (Uncompressed)