From: Jason Stephenson Date: Sat, 1 Oct 2022 13:20:35 +0000 (-0400) Subject: LP1991444: Cleanup Build Docs Artifacts in GitHub Actions X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=b817fa70da3b03ae4d766cbdd1a5eca4c05e8adb;p=working%2FEvergreen.git 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 --- 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