This is an automated email from the ASF dual-hosted git repository. jamesfredley pushed a commit to branch ci/publish-docs-workflow in repository https://gitbox.apache.org/repos/asf/grails-core.git
commit a5df706f3f09127798a1769ea0964ec472244772 Author: James Fredley <[email protected]> AuthorDate: Sat Jan 31 21:46:43 2026 -0500 Enable Docker image removal to free disk space --- .github/workflows/publish-docs.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml index 6ab56b8449..cda0da4057 100644 --- a/.github/workflows/publish-docs.yml +++ b/.github/workflows/publish-docs.yml @@ -34,8 +34,6 @@ jobs: name: "Publish Documentation" runs-on: ubuntu-24.04 steps: - - name: "📝 Store release version" - run: echo "VERSION=${VERSION}" >> "$GITHUB_ENV" - name: "⚙️ Maximize build space" uses: easimon/maximize-build-space@c28619d8999a147d5e09c1199f84ff6af6ad5794 with: @@ -45,7 +43,7 @@ jobs: remove-android: 'true' # Remove Android tools (~2 GB savings) remove-haskell: 'true' # Remove Haskell (~1 GB savings) remove-codeql: 'true' # Remove CodeQL (~500 MB savings) - remove-docker-images: 'false' # Prune Docker if used (~1-2 GB savings) + remove-docker-images: 'true' # Prune Docker (~1-2 GB savings) - name: "📥 Checkout repository" uses: actions/checkout@v5 with:
