From 524b0205e99b302cc5e334774433be576e26074d Mon Sep 17 00:00:00 2001 From: Anmol Sethi Date: Tue, 12 May 2020 02:59:03 -0400 Subject: [PATCH] Workaround for GH Actions ruining file permissions --- ci/steps/publish-npm.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/steps/publish-npm.sh b/ci/steps/publish-npm.sh index cbad679d..10865a61 100755 --- a/ci/steps/publish-npm.sh +++ b/ci/steps/publish-npm.sh @@ -10,6 +10,8 @@ main() { fi download_artifact npm-package ./release + # https://github.com/actions/upload-artifact/issues/38 + chmod +x $(grep -rl '^#!/.\+' release) yarn publish --non-interactive release }