@@ -188,13 +188,13 @@ jobs:
188
188
189
189
if [ << parameters.env >> == 'prod' ]; then
190
190
echo "RI_SEGMENT_WRITE_KEY='$RI_SEGMENT_WRITE_KEY'" >> $envFile
191
- yarn package:prod --ignore-other-target-folders -- target linux-x64 --out ${packagePath}
191
+ yarn package:prod --target linux-x64 --out ${packagePath}
192
192
exit 0;
193
193
fi
194
194
195
195
echo "RI_SEGMENT_WRITE_KEY='$RI_SEGMENT_WRITE_KEY_STAGE'" >> $envFile
196
196
sed -i "s/^RI_APP_FOLDER_NAME=.*/RI_APP_FOLDER_NAME='.redis-for-vscode-stage'/" $envFile
197
- yarn package:stage --ignore-other-target-folders -- target linux-x64 --out ${packagePath}
197
+ yarn package:stage --target linux-x64 --out ${packagePath}
198
198
- persist_to_workspace :
199
199
root : .
200
200
paths :
@@ -239,27 +239,27 @@ jobs:
239
239
240
240
echo "RI_SEGMENT_WRITE_KEY='$RI_SEGMENT_WRITE_KEY_STAGE'" >> $envFile
241
241
sed -i '' "s/^RI_APP_FOLDER_NAME=.*/RI_APP_FOLDER_NAME='.redis-for-vscode-stage'/" $envFile
242
- yarn package:stage --ignore-other-target-folders -- target darwin-<< parameters.target >> --out ${packagePath}-<< parameters.target >>.vsix
242
+ yarn package:stage --target darwin-<< parameters.target >> --out ${packagePath}-<< parameters.target >>.vsix
243
243
exit 0;
244
244
fi
245
245
246
246
if [ << parameters.env >> == 'prod' ]; then
247
247
echo "RI_SEGMENT_WRITE_KEY='$RI_SEGMENT_WRITE_KEY'" >> $envFile
248
248
yarn download:backend arm64
249
- yarn package:prod --ignore-other-target-folders -- target darwin-arm64 --out ${packagePath}-arm64.vsix
249
+ yarn package:prod --target darwin-arm64 --out ${packagePath}-arm64.vsix
250
250
251
251
yarn download:backend x64
252
- yarn package:prod --ignore-other-target-folders -- target darwin-x64 --out ${packagePath}-x64.vsix
252
+ yarn package:prod --target darwin-x64 --out ${packagePath}-x64.vsix
253
253
exit 0;
254
254
fi
255
255
256
256
echo "RI_SEGMENT_WRITE_KEY='$RI_SEGMENT_WRITE_KEY_STAGE'" >> $envFile
257
257
sed -i '' "s/^RI_APP_FOLDER_NAME=.*/RI_APP_FOLDER_NAME='.redis-for-vscode-stage'/" $envFile
258
258
yarn download:backend arm64
259
- yarn package:stage --ignore-other-target-folders -- target darwin-arm64 --out ${packagePath}-arm64.vsix
259
+ yarn package:stage --target darwin-arm64 --out ${packagePath}-arm64.vsix
260
260
261
261
yarn download:backend x64
262
- yarn package:stage --ignore-other-target-folders -- target darwin-x64 --out ${packagePath}-x64.vsix
262
+ yarn package:stage --target darwin-x64 --out ${packagePath}-x64.vsix
263
263
- persist_to_workspace :
264
264
root : .
265
265
paths :
@@ -301,12 +301,12 @@ jobs:
301
301
302
302
if [ << parameters.env >> == 'prod' ]; then
303
303
echo "RI_SEGMENT_WRITE_KEY='$RI_SEGMENT_WRITE_KEY'" >> $envFile
304
- yarn package:prod --ignore-other-target-folders -- target win32-x64 --out ${packagePath}
304
+ yarn package:prod --target win32-x64 --out ${packagePath}
305
305
exit 0;
306
306
fi
307
307
308
308
sed -i "s/^RI_APP_FOLDER_NAME=.*/RI_APP_FOLDER_NAME='.redis-for-vscode-stage'/" $envFile
309
- yarn package:stage --ignore-other-target-folders -- target win32-x64 --out ${packagePath}
309
+ yarn package:stage --target win32-x64 --out ${packagePath}
310
310
shell : bash.exe
311
311
no_output_timeout : 20m
312
312
- persist_to_workspace :
0 commit comments