From c490f7e508c06eb294c13e3033381ff3b8fce4d0 Mon Sep 17 00:00:00 2001 From: Jose Costa Teixeira Date: Thu, 24 Apr 2025 11:58:57 +0100 Subject: [PATCH 1/2] Update ghbuild.yml --- .github/workflows/ghbuild.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ghbuild.yml b/.github/workflows/ghbuild.yml index 1994b532de..809368ca35 100644 --- a/.github/workflows/ghbuild.yml +++ b/.github/workflows/ghbuild.yml @@ -104,6 +104,10 @@ jobs: name: qa-json-artifact path: ./output/qa.json # Adjust the path based on where qa.json is located + - name: Remove files larger than 100MB from output + run: | + echo "Removing files > 100MB from ./output" + find ./output -type f -size +100M -print -delete - name: Get branch name run: echo "BRANCH_NAME=${GITHUB_REF##*/}" >> $GITHUB_ENV From 0f0c0d61807e6eb2af9d7584b227a6c5e3e1b4f4 Mon Sep 17 00:00:00 2001 From: Jose Costa Teixeira Date: Thu, 24 Apr 2025 11:59:33 +0100 Subject: [PATCH 2/2] Update ghbuild.yml --- .github/workflows/ghbuild.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ghbuild.yml b/.github/workflows/ghbuild.yml index 809368ca35..b6b562b14a 100644 --- a/.github/workflows/ghbuild.yml +++ b/.github/workflows/ghbuild.yml @@ -5,6 +5,7 @@ # 2021-11-26: (JCT): Reusable workflow # 2022-01-28: (JCT): add auto-create gh-pages if it doesn't exist # 2023-01-22: (JCT): use checkout action v3, and JamesIves/github-pages-deploy-action@v4 +# 2025-04-24: (JCT): delete file larger than 100MB from GH pages # Make sure your repo has a branch called gh-pages