Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/build-cli-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,13 @@ jobs:
echo "Checking dist/..."
ls -la dist/

- name: Free space before saving GitHub-hosted artifacts cache
if: inputs.cache_key_suffix == '-github'
run: |
rm -rf node_modules apps/*/node_modules packages/*/node_modules
rm -rf "$(pnpm store path --silent)" "$HOME/.cache/go-build" "$HOME/go/pkg/mod"
df -h

- name: Check existing build artifacts cache
id: build-artifacts-cache
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
Expand Down
Loading