From 8f9d8a9eb614da485d6427d108a00025b75bd427 Mon Sep 17 00:00:00 2001 From: Brice Dobry Date: Mon, 14 Sep 2020 21:48:09 -0400 Subject: [PATCH] Fix asset name in release script --- .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 f9d59c9018cd58..6ec0d105cdefd7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -57,6 +57,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./node-${{ steps.get_version.outputs.VERSION }}-linux-riscv64.tar.xz - asset_name: node-${{ steps.get_version.outputs.VERSION }}-linux-riscv64.tar.xz + asset_path: ./node-v${{ steps.get_version.outputs.VERSION }}-linux-riscv64.tar.xz + asset_name: node-v${{ steps.get_version.outputs.VERSION }}-linux-riscv64.tar.xz asset_content_type: application/x-gtar