We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1147824 commit 3298c10Copy full SHA for 3298c10
.github/workflows/tag.yml
@@ -15,6 +15,28 @@ jobs:
15
GO_VERSION: '1.23'
16
CHOCOLATEY_VERSION: 2.2.0
17
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
40
- uses: actions/checkout@v4
41
with:
42
fetch-depth: 0
0 commit comments