Skip to content

Commit f517b88

Browse files
committed
Fixes for wheels
1 parent ad4fbf1 commit f517b88

File tree

2 files changed

+7
-17
lines changed

2 files changed

+7
-17
lines changed

.github/workflows/linux.yml

+3-8
Original file line numberDiff line numberDiff line change
@@ -271,17 +271,12 @@ jobs:
271271
tar -czvf ${CPACK_PACKAGE} *
272272
popd
273273
274-
- name: Download manifest
274+
- name: Download manifest and wheels
275275
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
276276
with:
277-
name: manifest_${{ matrix.build-type }}
277+
pattern: '{${{ env.GENAI_WHEELS_ARTIFACT_NAME }},manifest_${{ matrix.build-type }}}'
278278
path: ${{ github.workspace }}
279-
280-
- name: Download genai wheels
281-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
282-
with:
283-
name: ${{ env.GENAI_WHEELS_ARTIFACT_NAME }}
284-
path: ${{ env.WHEEL_PACKAGE }}
279+
merge-multiple: true
285280

286281
- name: Store ${{ matrix.build_type }} artifacts to a shared drive
287282
id: store_artifacts

.github/workflows/windows.yml

+4-9
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ jobs:
162162

163163
- name: Pack Artifacts
164164
run: |
165-
$file=Get-ChildItem -Path "${{ GENAI_INSTALL_DIR }}"
165+
$file=Get-ChildItem -Path "${{ env.GENAI_INSTALL_DIR }}"
166166
$compress = @{
167167
Path = $file
168168
CompressionLevel = "Optimal"
@@ -349,17 +349,12 @@ jobs:
349349
tar -czvf ${CPACK_PACKAGE} *
350350
popd
351351
352-
- name: Download manifest
352+
- name: Download manifest and wheels
353353
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
354354
with:
355-
name: manifest_${{ matrix.build-type }}
355+
pattern: '{${{ env.GENAI_WHEELS_ARTIFACT_NAME }},manifest_${{ matrix.build-type }}}'
356356
path: ${{ github.workspace }}
357-
358-
- name: Download genai wheels
359-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
360-
with:
361-
name: ${{ env.GENAI_WHEELS_ARTIFACT_NAME }}
362-
path: ${{ env.WHEEL_PACKAGE }}
357+
merge-multiple: true
363358

364359
- name: Store ${{ matrix.build_type }} artifacts to a shared drive
365360
id: store_artifacts

0 commit comments

Comments
 (0)