Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/ghbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -104,6 +105,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
Expand Down