Skip to content

Commit

Permalink
fix: free up disk space before release
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Feb 20, 2024
1 parent 7da1b30 commit 0639476
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions releaser/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,21 @@ inputs:
runs:
using: "composite"
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
# this might remove tools that are actually needed,
# if set to "true" but frees about 6 GB
tool-cache: false

# 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: true
swap-storage: true
- uses: ory/ci/checkout@master
with:
token: ${{ inputs.token }}
Expand Down

0 comments on commit 0639476

Please sign in to comment.