File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -312,17 +312,16 @@ jobs:
312
312
313
313
- name : Store artifacts to a shared drive
314
314
id : store_artifacts
315
- if : ${{ always() }}
315
+ if : always()
316
316
uses : ./openvino/.github/actions/store_artifacts
317
317
with :
318
318
artifacts : |
319
319
${{ env.BUILD_DIR }}/openvino_package.zip
320
320
${{ env.BUILD_DIR }}/openvino_tests.zip
321
321
${{ env.MANIFEST_PATH }}
322
- ${{ env.STORE_JS == 'true' && format('{0}/openvino_js_package.zip', env.BUILD_DIR) || '' }}
322
+ ${{ fromJSON(inputs.affected-components).JS_API && format('{0}/openvino_js_package.zip', env.BUILD_DIR) || '' }}
323
323
${{ env.STORE_WHEELS == 'true' && format('{0}/wheels', env.INSTALL_WHEELS_DIR) || '' }}
324
324
storage_dir : ${{ env.PRODUCT_TYPE }}
325
325
storage_root : ${{ env.ARTIFACTS_SHARE }}
326
326
env :
327
- STORE_WHEELS : ${{ inputs.build-type != 'Debug' }}
328
- STORE_JS : ${{ fromJSON(inputs.affected-components).JS_API && inputs.build-js }}
327
+ STORE_WHEELS : ${{ inputs.build-type != 'Debug' }}
You can’t perform that action at this time.
0 commit comments