From 69d58f4713d5fe1a3f567c9988700ae3762ac182 Mon Sep 17 00:00:00 2001 From: Dhanus Date: Thu, 31 Oct 2024 17:56:18 +0530 Subject: [PATCH] chore: revert to previous commit due to extracted image size > 2GB This reverts commit a1b0ade0a55f83afdb2bda565b6401983e632fcb. --- .github/workflows/release.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b0be8e51..f1d220c0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,16 +31,11 @@ jobs: verbose-output: true pi-gen-version: ${{ matrix.pi_gen_version }} - - name: Unzip and Rename Image File - run: | - unzip ${{ steps.build.outputs.image-path }} -d extracted_image - mv "$(find extracted_image -name "*.img")" "raspap-image-${{ github.ref_name }}-${{ matrix.arch }}.img" - - name: Upload Artifact uses: svenstaro/upload-release-action@v2 with: - file: raspap-image-${{ github.ref_name }}-${{ matrix.arch }}.img + asset_name: raspap-image-${{ github.ref_name }}-${{ matrix.arch }}.zip + file: ${{ steps.build.outputs.image-path }} repo_token: ${{ secrets.GITHUB_TOKEN }} tag: ${{ github.ref }} overwrite: true - file_glob: true