From 5224bc1fed83ae61b34d4b67d684fe2bc428ce24 Mon Sep 17 00:00:00 2001 From: Lucian Lazar Date: Mon, 8 Nov 2021 19:48:55 +0200 Subject: [PATCH] fixed for macOS --- action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 27a8f2b..1147b4e 100644 --- a/action.yml +++ b/action.yml @@ -8,4 +8,6 @@ runs: shell: bash run: | echo TODO this is not a long term solution as each job in each workflow file needs to execute this - sudo chown -R $USER:$USER $GITHUB_WORKSPACE \ No newline at end of file + # Commented: on macOS, group $USER doesn't seem to exist, so it's better to use just user + # sudo chown -R $USER:$USER $GITHUB_WORKSPACE + sudo chown -R $USER: $GITHUB_WORKSPACE \ No newline at end of file