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 2e27185 commit f14dbd4Copy full SHA for f14dbd4
.github/workflows/template-publish-image/action.yaml
@@ -19,6 +19,16 @@ inputs:
19
runs:
20
using: composite
21
steps:
22
+ # This step is a Workaround to avoid the "No space left on device" error.
23
+ # ref: https://github.com/actions/runner-images/issues/2840
24
+ - name: Remove unnecessary files
25
+ shell: bash
26
+ run: |
27
+ sudo rm -rf /usr/share/dotnet
28
+ sudo rm -rf /opt/ghc
29
+ sudo rm -rf "/usr/local/share/boost"
30
+ sudo rm -rf "$AGENT_TOOLSDIRECTORY"
31
+
32
- name: Set up QEMU
33
uses: docker/setup-qemu-action@v2
34
0 commit comments