From 8589d752ac9c9c5fd81be6179f3bf77243c145f2 Mon Sep 17 00:00:00 2001 From: Daniel Hiltgen Date: Thu, 25 Apr 2024 17:27:11 -0700 Subject: [PATCH] Fix release CI download-artifact path was being used incorrectly. It is where to extract the zip not the files in the zip to extract. Default is workspace dir which is what we want, so omit it --- .github/workflows/release.yaml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f14305a4..7217faf7 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -311,29 +311,18 @@ jobs: - uses: actions/download-artifact@v4 with: name: generate-windows-cpu - path: | - llm/build - dist/windows-amd64 - uses: actions/download-artifact@v4 with: name: generate-windows-cuda - path: | - llm/build - dist/windows-amd64 - uses: actions/download-artifact@v4 with: name: windows-cuda-deps - path: dist/deps - uses: actions/download-artifact@v4 with: name: windows-rocm-deps - path: dist/deps - uses: actions/download-artifact@v4 with: name: generate-windows-rocm - path: | - llm/build - dist/windows-amd64 - run: dir llm/build - run: | $gopath=(get-command go).source | split-path -parent