From 581a4a55532e2a28177bcaffd722a2bf298f967d Mon Sep 17 00:00:00 2001 From: Daniel Hiltgen Date: Wed, 11 Dec 2024 10:59:32 -0800 Subject: [PATCH] ci: fix artifact path prefix for missing windows payloads (#8052) upload-artifacts strips off leading common paths so when the ./build/ artifacts were removed, the ./dist/windows-amd64 prefix became common and was stripped, making the later download-artifacts place them in the wrong location --- .github/workflows/release.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 4408d4aa2..50177050c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -447,15 +447,19 @@ jobs: - uses: actions/download-artifact@v4 with: name: generate-windows-cpu + path: dist/windows-amd64/ - uses: actions/download-artifact@v4 with: name: generate-windows-cuda-11.3 + path: dist/windows-amd64/ - uses: actions/download-artifact@v4 with: name: generate-windows-cuda-12.4 + path: dist/windows-amd64/ - uses: actions/download-artifact@v4 with: name: generate-windows-rocm + path: dist/windows-amd64/ - uses: actions/download-artifact@v4 with: name: windows-arm64