From f8f2153f21bff25a761cd2d0be67a9d584b9d0d5 Mon Sep 17 00:00:00 2001 From: Louis Bompart Date: Fri, 27 Oct 2023 03:08:25 -0400 Subject: [PATCH] chore: fix release dl/up path --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 13778e82ca..b127472668 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -427,6 +427,7 @@ jobs: uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3 with: name: release-binaries + path: release-binaries - name: Apply & delete the patch run: | git apply release.patch @@ -448,6 +449,6 @@ jobs: uses: svenstaro/upload-release-action@7319e4733ec7a184d739a6f412c40ffc339b69c7 # 2.5.0 with: repo_token: ${{ secrets.GITHUB_TOKEN }} - file: ./packages/cli/core/dist/**/* + file: ./release-binaries/**/* file_glob: true tag: ${{ env.tag }}