From f7dcf4696277d3b506a209f9575061e7cdd84a53 Mon Sep 17 00:00:00 2001 From: Jacob Marks <100745682+J8k3@users.noreply.github.com> Date: Tue, 12 May 2026 14:57:24 -0400 Subject: [PATCH] Install brotli and add decompression steps Added steps to install brotli and decompress build files. --- .github/workflows/build-and-deploy.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index a09e057a..d04894ec 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -60,6 +60,16 @@ jobs: if: success() run: unzip build/prod/*.zip -d build/unpacked + - name: Install brotli + if: success() + run: sudo apt-get install -y brotli + + - name: Decompress build + if: success() + run: | + find build/unpacked -name "*.gz" -exec sh -c 'gunzip -f "$1"' _ {} \; + find build/unpacked -name "*.br" -exec sh -c 'brotli -d -f "$1"' _ {} \; + - name: Sync to S3 if: success() run: |