From 8003a0e76c866a50685cb43c24b60c0afa3fd5cd Mon Sep 17 00:00:00 2001 From: Captain Throwback Date: Tue, 13 Feb 2024 14:54:18 -0500 Subject: [PATCH] Add ramdisk files to release output Can be used for repacking or fastboot booting --- .github/workflows/Recovery Build.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Recovery Build.yml b/.github/workflows/Recovery Build.yml index 8a2351f9f..ea622835b 100644 --- a/.github/workflows/Recovery Build.yml +++ b/.github/workflows/Recovery Build.yml @@ -206,8 +206,13 @@ jobs: - name: Upload to Release uses: softprops/action-gh-release@v1 with: - files: workspace/out/target/product/${{ github.event.inputs.DEVICE_NAME }}/${{ github.event.inputs.BUILD_TARGET }}.img - name: ${{ github.event.inputs.DEVICE_NAME }}-${{ github.run_id }} + files: | + workspace/out/target/product/${{ github.event.inputs.DEVICE_NAME }}/${{ github.event.inputs.BUILD_TARGET }}.img + workspace/out/target/product/${{ github.event.inputs.DEVICE_NAME }}/obj/PACKAGING/vendor_ramdisk_fragments_intermediates/recovery.* + workspace/out/target/product/${{ github.event.inputs.DEVICE_NAME }}/ramdisk-recovery.* + name: | + TWRP for ${{ github.event.inputs.DEVICE_NAME }} + Run ID: ${{ github.run_id }} tag_name: ${{ github.run_id }} body: | Manifest: ${{ github.event.inputs.MANIFEST_BRANCH }}