We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27bfb83 commit 2dfde23Copy full SHA for 2dfde23
1 file changed
.github/workflows/docker-publish.yml
@@ -67,6 +67,15 @@ jobs:
67
with:
68
images: ghcr.io/socstech/cmp2028 # THIS LINE MUST BE EDITED FOR NEW MODULES
69
70
+ # Work around to get more space on the runner
71
+ # Based on: https://github.com/actions/runner-images/issues/2840#issuecomment-790492173
72
+ - name: Get extra free space
73
+ id: free-space
74
+ run: |
75
+ sudo rm -rf /usr/share/dotnet
76
+ sudo rm -rf /opt/ghc
77
+ sudo rm -rf "/usr/local/share/boost"
78
+ sudo rm -rf "$AGENT_TOOLSDIRECTORY"
79
80
# Build and push Docker image with Buildx (don't push on PR)
81
# https://github.com/docker/build-push-action
0 commit comments