Skip to content

Commit bef13e2

Browse files
authored
Update postgresql.yml
1 parent d33a704 commit bef13e2

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/postgresql.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,15 @@ jobs:
3232
runs-on: ubuntu-latest
3333

3434
steps:
35-
- name: Delete huge unnecessary tools folder
36-
run: rm -rf /opt/hostedtoolcache
35+
- name: Free up disk space by removing tools
36+
run: |
37+
sudo rm -rf /usr/share/dotnet
38+
sudo rm -rf /opt/ghc
39+
sudo rm -rf "/usr/local/share/boost"
40+
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
41+
echo "Disk space after cleanup:"
42+
df -h
43+
3744
- name: Set tags
3845
run: |
3946
if [ -z "$TAG" ]; then

0 commit comments

Comments
 (0)