Skip to content
This repository has been archived by the owner on Feb 16, 2025. It is now read-only.

Commit

Permalink
fix release action
Browse files Browse the repository at this point in the history
  • Loading branch information
appaquet committed Sep 2, 2024
1 parent 1e0aa6d commit ca7c899
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 @@ -161,11 +161,11 @@ jobs:
assets=()
for asset in ./artifacts/*/*.tar.gz; do
assets+=("-a" "$asset")
assets+=("$asset")
done
TAG="${GITHUB_REF##*/}"
echo "Creating release for tag $TAG"
gh release create $TAG "${assets[@]}" --title "$TAG" --notes "Release $TAG" --target $TAG
gh release create $TAG --title "$TAG" --notes "Release $TAG" --target $TAG ${assets[@]}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit ca7c899

Please sign in to comment.