Skip to content

Commit f6f3cab

Browse files
committed
fix: add disk space cleanup step in release.yml and allow verifier to continue on errors
1 parent 2fe5cd5 commit f6f3cab

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,17 @@ jobs:
8282
run: ./gradlew detekt
8383
continue-on-error: true # Don't fail release if Detekt finds issues
8484

85+
- name: Free up disk space
86+
run: |
87+
sudo rm -rf /usr/share/dotnet
88+
sudo rm -rf /opt/ghc
89+
sudo rm -rf /usr/local/share/boost
90+
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
91+
df -h
92+
8593
- name: Run Plugin Verifier
8694
run: ./gradlew runPluginVerifier
95+
continue-on-error: true # Don't fail release if verifier has issues (disk space, network, etc.)
8796

8897
- name: Upload build artifacts
8998
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)