Skip to content

Commit

Permalink
ci: add free-disk-space action
Browse files Browse the repository at this point in the history
  • Loading branch information
matkoch committed Jun 26, 2024
1 parent 4423d50 commit 7dcb1ab
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/samples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
fail-fast: false
matrix:
sample: [
'Actions',
'CefToolWindow',
'CodeInspections',
'CodeVision',
Expand All @@ -25,6 +26,11 @@ jobs:
]
runs-on: windows-latest
steps:
- uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
large-packages: false
dotnet: false
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
Expand Down
5 changes: 5 additions & 0 deletions template/content/.github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ jobs:
Build:
runs-on: windows-latest
steps:
- uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
large-packages: false
dotnet: false
- uses: actions/checkout@v4
with:
submodules: recursive
Expand Down
5 changes: 5 additions & 0 deletions template/content/.github/workflows/Deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ jobs:
Publish:
runs-on: windows-latest
steps:
- uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
large-packages: false
dotnet: false
- uses: actions/checkout@v4
with:
submodules: recursive
Expand Down

0 comments on commit 7dcb1ab

Please sign in to comment.