Skip to content

Commit 5ea1c40

Browse files
authored
fix(release): add disk cleanup to release action (#2437)
* fix(release): add disk cleanup and enable Go cache * fix: add pinned action reference * fix: reset cache to false
1 parent 3c03399 commit 5ea1c40

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/release.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
# uses: ./.github/workflows/cloud-acc-tests.yml
2828
goreleaser:
2929
runs-on: ubuntu-latest
30-
#needs:
30+
#needs:
3131
# - run-cloud-tests
3232
steps:
3333
- name: Checkout
@@ -36,6 +36,16 @@ jobs:
3636
persist-credentials: false
3737
- name: Unshallow
3838
run: git fetch --prune --unshallow
39+
- name: Free Disk Space
40+
uses: jlumbroso/free-disk-space@54081f138730dfc15788a16ea1f97d8457feca80 # v1.3.1
41+
with:
42+
tool-cache: false
43+
android: true
44+
dotnet: true
45+
haskell: true
46+
large-packages: true
47+
docker-images: true
48+
swap-storage: true
3949
- name: Set up Go
4050
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
4151
with:

0 commit comments

Comments
 (0)