From 6afab5aaf9c9f049ca78a79eff770530096e1643 Mon Sep 17 00:00:00 2001 From: Samuel Kendall Date: Sun, 6 Oct 2024 08:36:01 +0330 Subject: [PATCH] Update OrangeFox-Recovery-Builder.yml --- .github/workflows/OrangeFox-Recovery-Builder.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/OrangeFox-Recovery-Builder.yml b/.github/workflows/OrangeFox-Recovery-Builder.yml index 4bb0f34..d1e8476 100644 --- a/.github/workflows/OrangeFox-Recovery-Builder.yml +++ b/.github/workflows/OrangeFox-Recovery-Builder.yml @@ -164,6 +164,7 @@ jobs: cd OrangeFox/fox_${{ github.event.inputs.MANIFEST_BRANCH }}/out/target/product/${{ github.event.inputs.DEVICE_NAME }}/ wget https://github.com/kinguser981/recovery-installer/releases/download/zip/recovery-installer.zip zip -ur recovery-installer.zip ${{ env.RECOVERY_TYPE }}.img + echo "MD5_ZIP=$(md5sum ${{ env.RECOVERY_TYPE }}.img | cut -d ' ' -f 1)" >> $GITHUB_ENV fi continue-on-error: true @@ -172,6 +173,7 @@ jobs: if [ ${{ github.event.inputs.RECOVERY_TAR }} = true ]; then cd OrangeFox/fox_${{ github.event.inputs.MANIFEST_BRANCH }}/out/target/product/${{ github.event.inputs.DEVICE_NAME }}/ tar -cvf ${{ env.RECOVERY_TYPE }}.tar ${{ env.RECOVERY_TYPE }}.img + echo "MD5_TAR=$(md5sum ${{ env.RECOVERY_TYPE }}.img | cut -d ' ' -f 1)" >> $GITHUB_ENV fi continue-on-error: true @@ -189,9 +191,6 @@ jobs: Build: ${{ github.event.inputs.MANIFEST_BRANCH }} Device: [Device Tree/Branch](${{ github.event.inputs.DEVICE_TREE }}/tree/${{ github.event.inputs.DEVICE_TREE_BRANCH }}) Commit: Most recent [commit](${{ github.event.inputs.DEVICE_TREE }}/commit/${{ env.COMMIT_ID }}) during building. - MD5 (img): ${{ env.MD5_IMG }} - MD5 (zip): ${{ env.MD5_ZIP }} - MD5 (tar): ${{ env.MD5_TAR }} - name: Release ramdisk-recovery if: env.CHECK_IMG_IS_OK == 'true'