diff options
Diffstat (limited to '.github/workflows/ci.generate.ts')
-rwxr-xr-x | .github/workflows/ci.generate.ts | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts index efe9e17de..616d4653b 100755 --- a/.github/workflows/ci.generate.ts +++ b/.github/workflows/ci.generate.ts @@ -575,7 +575,12 @@ const ci = { "(github.ref == 'refs/heads/main' ||", "startsWith(github.ref, 'refs/tags/'))))", ].join("\n"), - run: "cargo build --release --locked --all-targets", + run: [ + // output fs space before and after building + "df -h", + "cargo build --release --locked --all-targets", + "df -h", + ].join("\n"), }, { name: "Upload PR artifact (linux)", |