Skip to content

Commit 11c0638

Browse files
authored
Fix artifact name (#24)
Adds missing arch name to the artifact name. Failing build that should be fixed by this: * https://github.com/llvm/torch-mlir-release/actions/runs/19388930604/job/55479671779
1 parent d66456b commit 11c0638

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/buildReleaseAndPublish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
matrix:
2727
package: [torch-mlir]
2828
py_version: [cp310-cp310, cp311-cp311, cp312-cp312]
29-
arch: [x64_64, AArch64]
29+
arch: [x86_64, AArch64]
3030

3131
runs-on: ${{ matrix.arch == 'AArch64' && 'ubuntu-24.04-arm' || 'ubuntu-24.04' }}
3232

@@ -58,7 +58,7 @@ jobs:
5858
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
5959
with:
6060
if-no-files-found: error
61-
name: snapshot-${{ matrix.package }}-${{ matrix.py_version }}-${{ env.tm_package_version }}
61+
name: snapshot-${{ matrix.package }}-${{ matrix.arch }}-${{ matrix.py_version }}-${{ env.tm_package_version }}
6262
path: dist
6363

6464
- name: Release python wheels

0 commit comments

Comments
 (0)