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 84d65c3 commit 94cf4afCopy full SHA for 94cf4af
.github/workflows/docker-build-push.yml
@@ -26,6 +26,13 @@ jobs:
26
set -euo pipefail
27
IFS=$'\n\t'
28
echo "IMAGE=${GITHUB_REPOSITORY#*/docker-}" >> "${GITHUB_ENV}"
29
+ - name: Free disk space
30
+ run: |
31
+ sudo rm -rf /usr/share/dotnet # not using .NET
32
+ sudo rm -rf /usr/local/lib/android # not building Android
33
+ sudo rm -rf /opt/ghc # not using Haskell
34
+ docker system prune -af --volumes
35
+ sudo apt-get clean
36
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
37
with:
38
persist-credentials: false
0 commit comments