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 43957fa commit 3b4c208Copy full SHA for 3b4c208
.github/workflows/cd-release.yaml
@@ -97,6 +97,15 @@ jobs:
97
uses: actions/setup-go@v5
98
with:
99
go-version-file: go.mod
100
+ - name: Free up disk space
101
+ shell: bash
102
+ run: |
103
+ sudo find /opt -maxdepth 1 -mindepth 1 \
104
+ ! -path /opt/containerd \
105
+ ! -path /opt/actionarchivecache \
106
+ ! -path /opt/runner \
107
+ ! -path /opt/runner-cache \
108
+ -exec rm -rf {} \;
109
- name: Build Binaries
110
id: build_binaries
111
run: |
0 commit comments