From d3578b62a4b021d18735631c7796fe5afe080abc Mon Sep 17 00:00:00 2001 From: Mike Hardy Date: Tue, 14 May 2024 15:39:44 -0500 Subject: [PATCH] fix(ci): fix executable bits on ios_config script during patchset generation --- .github/workflows/create_test_patches.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/create_test_patches.yml b/.github/workflows/create_test_patches.yml index 7c3ed15830..be506d868b 100644 --- a/.github/workflows/create_test_patches.yml +++ b/.github/workflows/create_test_patches.yml @@ -85,6 +85,8 @@ jobs: if [ -d node_modules/@react-native-firebase/$PACKAGE ]; then pushd node_modules/@react-native-firebase tar -zxf $HOME/packages/react-native-firebase-${PACKAGE}.tgz + # yarn3+ pack does not handle the executable bits on our scripts correctly. Fix. + chmod 755 package/ios_config.sh && true mv $PACKAGE/package.json package/ \rm -fr $PACKAGE mv package $PACKAGE