Skip to content

Commit

Permalink
maybe fix release upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Eeems committed Jan 4, 2024
1 parent 73f0e90 commit e8df8a9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,13 @@ jobs:
path: dist
- name: Upload to release
run:
find . -type f | xargs -rI {} gh release upload "$TAG" {} --clobber
if [ -f rmufuse ]; then
name="rmufuse-${{ matrix.artifact }}"
mv rmufuse "$name"
gh release upload "$TAG" "$name" --clobber
else
find . -type f | xargs -rI {} gh release upload "$TAG" {} --clobber
fi
env:
GH_TOKEN: ${{ github.token }}
TAG: ${{ github.event.release.tag_name }}
Expand Down

0 comments on commit e8df8a9

Please sign in to comment.