From 42c6bfae1e2012d5c37ccf89c151706ef5b1a748 Mon Sep 17 00:00:00 2001 From: Ahmad Husen Date: Sun, 30 May 2021 14:07:35 +0700 Subject: [PATCH] feat(container): create /tmp folder manually --- entrypoint.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/entrypoint.sh b/entrypoint.sh index 63708c6..399893c 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -4,6 +4,7 @@ echo '::group::Copying file from $WORKPATH to /tmp/gh-action' WORKPATH=./$INPUT_PATH # Set path permision +sudo -u builder mkdir /tmp/gh-action sudo -u builder cp -rfv ./.git /tmp/gh-action/.git sudo -u builder cp -fv $WORKPATH/PKGBUILD /tmp/gh-action/PKGBUILD cd /tmp/gh-action