Browse Source

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
parth/cmd-cleanup-SO v0.5.2-rc3
Daniel Hiltgen 2 years ago
committed by GitHub
parent
commit
581a4a5553
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      .github/workflows/release.yaml

4
.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

Loading…
Cancel
Save