Skip to content

Commit

Permalink
meta: fix release draft cmd (#5529)
Browse files Browse the repository at this point in the history
  • Loading branch information
rkrasiuk authored Nov 22, 2023
1 parent 0f1f47a commit 3818dea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ jobs:
)
assets=()
for asset in ./reth-*.tar.gz*; do
assets+=("-a" "$asset/$asset")
assets+=("$asset/$asset")
done
tag_name="${{ env.VERSION }}"
echo "$body" | gh release create --draft "${assets[@]}" -F "-" "$tag_name"
echo "$body" | gh release create --draft -F "-" "$tag_name" "${assets[@]}"

0 comments on commit 3818dea

Please sign in to comment.