Gitea Action runner installer

This commit is contained in:
Clemens Schwaighofer
2024-08-28 11:05:55 +09:00
parent 08715b4437
commit 59f2394b5c
2 changed files with 28 additions and 0 deletions

View File

@@ -25,6 +25,11 @@ if [ ! -f "${target_file}" ]; then
echo "There is no gitea target file at ${target_file}. Is gitea installed?";
exit;
fi;
target_file_act_runner="/usr/local/bin/act_runner";
if [ ! -f "${target_file_act_runner}" ]; then
echo "There is no gitea action runner target file at ${target_file}. Is gitea action runner installed?";
exit;
fi;
export arch target_file;