From 5480e30d30af4a3b43d7a98595d40833c1f2ca4e Mon Sep 17 00:00:00 2001 From: Jason Stephenson Date: Sat, 1 Oct 2022 09:20:35 -0400 Subject: [PATCH] LP1991444: Cleanup Build Docs Artifacts in GitHub Actions The Build Docs GitHub action leaves the built docs behind as artifacts. These artifacts currently use about 58MB apiece. This can quickly consume all of the available storage spacce (500MB) for free-tier GitHub accounts. This commit adds a retention-days setting of 2 so that build docs artifacts should be removed after two days. See also: https://docs.github.com/en/actions/using-workflows/storing-workflow-data-as-artifacts#configuring-a-custom-artifact-retention-period Signed-off-by: Jason Stephenson Signed-off-by: Jane Sandberg --- .github/workflows/docs.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 29cc5f8adf..9a1b66cac6 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -21,3 +21,4 @@ jobs: with: name: built-docs path: docs/output + retention-days: 2 -- 2.11.0