We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a0e6a3 commit 0be0718Copy full SHA for 0be0718
.github/workflows/release.yml
@@ -80,6 +80,13 @@ jobs:
80
- name: Install dependencies
81
run: pnpm install
82
83
+ # Fix: Resolve disk space error "ENOSPC: no space left on device" on GitHub Actions runners
84
+ - name: Free disk cache
85
+ if: ${{ runner.environment == 'github-hosted' && inputs.target == 'x86_64-unknown-linux-gnu' }}
86
+ uses: xc2/free-disk-space@fbe203b3788f2bebe2c835a15925da303eaa5efe # v1.0.0
87
+ with:
88
+ tool-cache: false
89
+
90
- name: Get NAPI info
91
id: napi-info
92
uses: rspack-contrib/rspack-toolchain/get-napi-info@v1
0 commit comments