Skip to content

Commit

Permalink
chore: fix github release workflow (#1141)
Browse files Browse the repository at this point in the history
  • Loading branch information
ogenev authored Feb 6, 2024
1 parent 5982033 commit 89cf94a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,6 @@ jobs:
# https://github.com/openethereum/openethereum/blob/main/.github/workflows/build.yml
run: |
body=$(cat <<- "ENDBODY"
<Release Name>
## Testing Checklist (DELETE ME)
Expand Down Expand Up @@ -211,7 +210,7 @@ jobs:
)
assets=()
for asset in ./trin-*.tar.gz*; do
assets+=("-a" "$asset/$asset")
assets+=("$asset/$asset")
done
tag_name="${{ env.VERSION }}"
echo "$body" | gh release create --draft -t "Trin $tag_name" -F "-" "$tag_name" "${assets[@]}"

0 comments on commit 89cf94a

Please sign in to comment.