Skip to content

Commit 01a8dc2

Browse files
authored
ci: use local version of bob on CI (#575)
1 parent 48129ea commit 01a8dc2

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/build-templates.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,15 @@ jobs:
121121
rm -f example/yarn.lock # Workaround for cached yarn.lock from older version
122122
yarn install --no-immutable
123123
124+
- name: Use local version of react-native-builder-bob
125+
run: |
126+
cd packages/react-native-builder-bob
127+
npm pack
128+
tgz=$(ls react-native-builder-bob-*.tgz)
129+
cd -
130+
cd ${{ env.work_dir }}
131+
yarn add --dev ../packages/react-native-builder-bob/$tgz
132+
124133
- name: Get build target
125134
working-directory: ${{ env.work_dir }}
126135
run: |

0 commit comments

Comments
 (0)