Skip to content

Commit 573c7da

Browse files
committed
[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]>
1 parent 7a0bf9e commit 573c7da

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,11 @@ jobs:
114114
with:
115115
repository: apache/spark
116116
ref: "${{ inputs.branch }}"
117+
- name: Free up disk space
118+
run: |
119+
if [ -f ./dev/free_disk_space ]; then
120+
./dev/free_disk_space
121+
fi
117122
- name: Release Apache Spark
118123
env:
119124
GIT_BRANCH: "${{ inputs.branch }}"

0 commit comments

Comments
 (0)