From 7e0759076fe062785a73f91331c6beab667a7772 Mon Sep 17 00:00:00 2001 From: nerdCopter <56646290+nerdCopter@users.noreply.github.com> Date: Thu, 21 Mar 2024 17:57:55 -0500 Subject: [PATCH] [github actions] release assets upload fix (#13462) --- .github/workflows/build-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 20d359ecca1..49860ee6698 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -30,10 +30,10 @@ jobs: set -x ASSETS=() for asset in Assets/*.hex; do - ASSETS+=("-a" "$asset") + ASSETS+=("$asset") echo "$asset" done TAG_NAME="${GITHUB_REF##*/}" - gh release edit "${ASSETS[@]}" "${TAG_NAME}" + gh release upload "${TAG_NAME}" "${ASSETS[@]}" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}