Skip to content

Commit 0d0fc99

Browse files
committed
Create the temporary build directory below $RUNNER_TEMP
1 parent 1b364d6 commit 0d0fc99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ clean_up()
4242
rm --force --recursive -- "${build_dir-}"
4343
}
4444

45-
build_dir=$(mktemp --directory) || exit 1
45+
build_dir=$(mktemp --directory --tmpdir="${RUNNER_TEMP-}" build-deb-action-XXXXXX) || exit 1
4646
trap clean_up EXIT INT HUP TERM
4747

4848
env_file=$build_dir/env

0 commit comments

Comments
 (0)