Skip to content

Commit 3298c10

Browse files
committed
chore: free skip space during release
1 parent 1147824 commit 3298c10

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/tag.yml

+22
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,28 @@ jobs:
1515
GO_VERSION: '1.23'
1616
CHOCOLATEY_VERSION: 2.2.0
1717
steps:
18+
# temporary workaround for an error in free disk space action
19+
# https://github.com/jlumbroso/free-disk-space/issues/14
20+
- name: Update Package List and Remove Dotnet
21+
run: |
22+
sudo apt-get update
23+
sudo apt-get remove -y '^dotnet-.*'
24+
25+
# https://github.com/marketplace/actions/free-disk-space-ubuntu
26+
- name: Free Disk Space
27+
uses: jlumbroso/free-disk-space@main
28+
with:
29+
# this might remove tools that are actually needed
30+
tool-cache: false
31+
32+
# all of these default to true
33+
android: true
34+
dotnet: true
35+
haskell: true
36+
large-packages: true
37+
docker-images: true
38+
swap-storage: false
39+
1840
- uses: actions/checkout@v4
1941
with:
2042
fetch-depth: 0

0 commit comments

Comments
 (0)