From fa963c7d0e2c9854fde95f100d08168f2cc34992 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Thu, 26 Sep 2024 09:12:34 -0300 Subject: [PATCH] github: deploy: Gzip manifest MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Patrick José Pereira --- .github/workflows/deploy.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index a2c30ca..3570e8b 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -46,6 +46,7 @@ jobs: yarn install --frozen-lockfile yarn build mv dist/* ../build + cd build && gzip manifest.json --best --keep - name: Upload logs uses: actions/upload-artifact@v4 @@ -59,6 +60,12 @@ jobs: name: manifest.json path: build/manifest.json + - name: Upload manifest gzip + uses: actions/upload-artifact@v4 + with: + name: manifest.json.gzip + path: build/manifest.json.gzip + - name: Deploy 🚀 uses: JamesIves/github-pages-deploy-action@v4 with: