Skip to content

Commit ebdd5ee

Browse files
committed
Add extracting cpack archive on Windows
1 parent f02dc0c commit ebdd5ee

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/windows.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -400,6 +400,9 @@ jobs:
400400
path: ${{ env.OV_INSTALL_DIR }}
401401
merge-multiple: true
402402

403+
- name: Extract Artifacts
404+
run: Expand-Archive -Path ${{ env.OV_INSTALL_DIR }}/${{ env.GENAI_ARCHIVE_ARTIFACT_BASE_NAME }}.zip -DestinationPath ${{ env.OV_INSTALL_DIR }}
405+
403406
- name: Build Samples (Release)
404407
if: ${{ 'Release' == matrix.build-type }}
405408
run: |
@@ -589,6 +592,9 @@ jobs:
589592
path: ${{ env.INSTALL_DIR }}
590593
merge-multiple: true
591594

595+
- name: Extract Artifacts
596+
run: Expand-Archive -Path ${{ env.INSTALL_DIR }}/${{ env.GENAI_ARCHIVE_ARTIFACT_BASE_NAME }}.zip -DestinationPath ${{ env.INSTALL_DIR }}
597+
592598
- name: Download GenAI JS Bildings Artifacts
593599
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
594600
with:
@@ -671,7 +677,10 @@ jobs:
671677
pattern: "{${{ needs.openvino_download.outputs.ov_artifact_name }},genai_cpack_${{ matrix.build-type }},genai_tools_${{ matrix.build-type }},genai_tests_${{ matrix.build-type }},genai_wheels}"
672678
path: ${{ env.INSTALL_DIR }}
673679
merge-multiple: true
674-
680+
681+
- name: Extract Artifacts
682+
run: Expand-Archive -Path ${{ env.INSTALL_DIR }}/${{ env.GENAI_ARCHIVE_ARTIFACT_BASE_NAME }}.zip -DestinationPath ${{ env.INSTALL_DIR }}
683+
675684
- name: Setup Python ${{ env.PYTHON_VERSION }}
676685
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
677686
with:

0 commit comments

Comments
 (0)