Skip to content

Commit

Permalink
Release assets upload fix
Browse files Browse the repository at this point in the history
  • Loading branch information
haslinghuis committed Mar 19, 2024
1 parent 686a485 commit 3a9121d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ jobs:
set -x
ASSETS=()
for asset in Assets/*.zip; 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 }}

0 comments on commit 3a9121d

Please sign in to comment.