We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15d7f90 commit b76c1b0Copy full SHA for b76c1b0
1 file changed
deploy.sh
@@ -79,6 +79,11 @@ if [[ "$BUILD_DIR" = false ]]; then
79
TMP_DIR="${HOME}/archivetmp"
80
mkdir "$TMP_DIR"
81
82
+ # Workaround for: detected dubious ownership in repository at '/github/workspace' issue.
83
+ # see: https://github.com/10up/action-wordpress-plugin-deploy/issues/116
84
+ # Mark github workspace as safe directory.
85
+ git config --global --add safe.directory "$GITHUB_WORKSPACE"
86
+
87
git config --global user.email "10upbot+github@10up.com"
88
git config --global user.name "10upbot on GitHub"
89
0 commit comments