This is an automated email from the ASF dual-hosted git repository.

gurwls223 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/master by this push:
     new 573c7dab0423 [MINOR][INFRA] Free disk space in releasing workflow
573c7dab0423 is described below

commit 573c7dab04231cabd08173c523c54826a2076fc0
Author: Hyukjin Kwon <[email protected]>
AuthorDate: Mon Sep 29 13:36:26 2025 +0900

    [MINOR][INFRA] Free disk space in releasing workflow
    
    ### What changes were proposed in this pull request?
    
    This PR proposes to free disk space in releasing workflow.
    
    ### Why are the changes needed?
    
    Finalizing step fails without this.
    
    ### Does this PR introduce _any_ user-facing change?
    
    No, dev-only.
    
    ### How was this patch tested?
    
    Manually.
    
    ### Was this patch authored or co-authored using generative AI tooling?
    
    No.
    
    Closes #52480 from HyukjinKwon/free_disk_space.
    
    Authored-by: Hyukjin Kwon <[email protected]>
    Signed-off-by: Hyukjin Kwon <[email protected]>
---
 .github/workflows/release.yml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index a6fa04b120de..5de61c831cbe 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -114,6 +114,11 @@ jobs:
         with:
           repository: apache/spark
           ref: "${{ inputs.branch }}"
+      - name: Free up disk space
+        run: |
+          if [ -f ./dev/free_disk_space ]; then
+            ./dev/free_disk_space
+          fi
       - name: Release Apache Spark
         env:
           GIT_BRANCH: "${{ inputs.branch }}"


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to