We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0159787 commit e605aacCopy full SHA for e605aac
1 file changed
entrypoint.sh
@@ -13,6 +13,13 @@ echo "REF: $GITHUB_REF"
13
echo "HEAD-REF: $GITHUB_HEAD_REF"
14
echo "BASE-REF: $GITHUB_BASE_REF"
15
pwd
16
+ls -l `pwd`
17
+id
18
+
19
+# Add safe directory option for github workspace to disable fatal error
20
+# - docker container uid is 0(root)
21
+# - github workspace directory owner is 1001
22
+git config --global --add safe.directory /github/workspace
23
24
RESULT=0
25
@@ -54,4 +61,4 @@ done
54
61
55
62
echo -e "\e[1;34mDone\e[0m"
56
63
57
-exit $RESULT
64
+exit $RESULT
0 commit comments