mirror of
https://git.mirrors.martin98.com/https://github.com/actions/cache
synced 2025-07-31 00:22:04 +08:00
11 lines
188 B
Bash
Executable File
11 lines
188 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Validate args
|
|
prefix="$1"
|
|
if [ -z "$prefix" ]; then
|
|
echo "Must supply prefix argument"
|
|
exit 1
|
|
fi
|
|
|
|
mkdir test-cache
|
|
echo "$prefix $GITHUB_RUN_ID" > test-cache/test-file.txt |