We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48129ea commit 01a8dc2Copy full SHA for 01a8dc2
.github/workflows/build-templates.yml
@@ -121,6 +121,15 @@ jobs:
121
rm -f example/yarn.lock # Workaround for cached yarn.lock from older version
122
yarn install --no-immutable
123
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
+
133
- name: Get build target
134
working-directory: ${{ env.work_dir }}
135
run: |
0 commit comments