Skip to content

Commit

Permalink
chore(CI): Try another Free disk space action
Browse files Browse the repository at this point in the history
  • Loading branch information
jim60105 committed Aug 27, 2023
1 parent d055780 commit 92b9e9d
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions .github/workflows/docker_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,21 @@ jobs:

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Maximize build space
uses: easimon/maximize-build-space@master
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
remove-dotnet: 'true'
remove-android: 'true'
remove-haskell: 'true'
remove-codeql: 'true'
# this might remove tools that are actually needed,
# if set to "true" but frees about 6 GB
tool-cache: true

# all of these default to true, but feel free to set to
# "false" if necessary for your workflow
android: true
dotnet: true
haskell: true
large-packages: true
docker-images: false
swap-storage: false

- name: Checkout
uses: actions/checkout@v3
Expand Down

0 comments on commit 92b9e9d

Please sign in to comment.