From 901d7b1def3051b74e66df80f5dbe41425f43b0e Mon Sep 17 00:00:00 2001 From: Sreekanth Date: Tue, 10 Sep 2024 20:32:17 +0530 Subject: [PATCH] Fix path in download action in release.yaml Signed-off-by: Sreekanth --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5c17591fe8..dcab109e0e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -120,13 +120,13 @@ jobs: uses: actions/download-artifact@v3 with: name: numaflow-rs-linux-amd64 - path: dist/numaflow-rs-linux-amd64 + path: dist/ - name: Download Rust arm64 binaries uses: actions/download-artifact@v3 with: name: numaflow-rs-linux-arm64 - path: dist/numaflow-rs-linux-arm64 + path: dist/ - name: Registry Login uses: docker/login-action@v2