Skip to content

Commit

Permalink
[GHA] OV provider: fixed upload condition for JS artifacts (#28906)
Browse files Browse the repository at this point in the history
### Details:
 - fixed upload condition for JS artifacts
 
### Tickets:
 - *ticket-id*
  • Loading branch information
mryzhov authored Feb 10, 2025
1 parent 38791c6 commit f47bfc2
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/job_build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -312,17 +312,16 @@ jobs:

- name: Store artifacts to a shared drive
id: store_artifacts
if: ${{ always() }}
if: always()
uses: ./openvino/.github/actions/store_artifacts
with:
artifacts: |
${{ env.BUILD_DIR }}/openvino_package.zip
${{ env.BUILD_DIR }}/openvino_tests.zip
${{ env.MANIFEST_PATH }}
${{ env.STORE_JS == 'true' && format('{0}/openvino_js_package.zip', env.BUILD_DIR) || '' }}
${{ fromJSON(inputs.affected-components).JS_API && format('{0}/openvino_js_package.zip', env.BUILD_DIR) || '' }}
${{ env.STORE_WHEELS == 'true' && format('{0}/wheels', env.INSTALL_WHEELS_DIR) || '' }}
storage_dir: ${{ env.PRODUCT_TYPE }}
storage_root: ${{ env.ARTIFACTS_SHARE }}
env:
STORE_WHEELS: ${{ inputs.build-type != 'Debug' }}
STORE_JS: ${{ fromJSON(inputs.affected-components).JS_API && inputs.build-js }}
STORE_WHEELS: ${{ inputs.build-type != 'Debug' }}

0 comments on commit f47bfc2

Please sign in to comment.