We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fe5cd5 commit f6f3cabCopy full SHA for f6f3cab
.github/workflows/release.yml
@@ -82,8 +82,17 @@ jobs:
82
run: ./gradlew detekt
83
continue-on-error: true # Don't fail release if Detekt finds issues
84
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
+
93
- name: Run Plugin Verifier
94
run: ./gradlew runPluginVerifier
95
+ continue-on-error: true # Don't fail release if verifier has issues (disk space, network, etc.)
96
97
- name: Upload build artifacts
98
uses: actions/upload-artifact@v4
0 commit comments