Upload files to "/"

This commit is contained in:
2026-04-09 16:23:31 +03:30
parent c647f24614
commit 70a719e130
80 changed files with 93592 additions and 357 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/bin/sh
# Validate args
prefix="$1"
if [ -z "$prefix" ]; then
echo "Must supply prefix argument"
exit 1
fi
path="$2"
if [ -z "$path" ]; then
echo "Must supply path argument"
exit 1
fi
mkdir -p $path
echo "$prefix $GITHUB_RUN_ID" > $path/test-file.txt