We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdc1bb3 commit 5f8efbfCopy full SHA for 5f8efbf
.github/actions/post-build-selective/action.yml
@@ -15,6 +15,16 @@ inputs:
15
runs:
16
using: "composite"
17
steps:
18
+ # Try to free up some space on the github actions runners by deleting things we
19
+ # don't care about. Truncate the output using `head` so we can still see some output,
20
+ # but not so much it floods the logs
21
+ - run: head -n100 <(rm -rfv /usr/local/lib/android)
22
+ shell: bash
23
+ - run: head -n100 <(rm -rfv /opt/ghc)
24
25
+ - run: head -n100 <(rm -rfv /usr/local/.ghcup)
26
27
+
28
- uses: actions/setup-node@v4
29
with: { node-version: '22' }
30
0 commit comments