Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
CODeRUS authored Sep 28, 2024
1 parent 9c4039f commit d54f516
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@ jobs:
set -x
assets=()
for asset in artifacts/*.bin; do
assets+=("-a" "$asset")
assets+=("$asset")
done
for asset in artifacts/*.zip; do
assets+=("-a" "$asset")
assets+=("$asset")
done
RELEASE_TAG="$(date +'%Y%m%d%H%M%S')-$(git log --format=%h -1)"
gh release create "$RELEASE_TAG" "${assets[@]}"
Expand Down

0 comments on commit d54f516

Please sign in to comment.