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 a91af5588f982a1f2559bb4994b23ddaff3550f9 Author: James Fredley <[email protected]> AuthorDate: Sat Jan 31 22:06:40 2026 -0500 Set build-mount-path to /home/runner Add the build-mount-path input to the workflow runner configuration, setting it to '/home/runner'. This explicitly defines the mount path for build operations on the runner environment, helping ensure consistent workspace paths during the docs publish job. --- .github/workflows/publish-docs.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml index 6ab56b8449..9f0db66417 100644 --- a/.github/workflows/publish-docs.yml +++ b/.github/workflows/publish-docs.yml @@ -46,6 +46,7 @@ jobs: 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) + build-mount-path: '/home/runner' - name: "📥 Checkout repository" uses: actions/checkout@v5 with:
