chore: fix file move issue in ci.yml

This commit is contained in:
Horror Proton
2023-03-12 22:11:32 +08:00
parent 1f10ad4e43
commit 5c96af97f9

View File

@@ -279,7 +279,8 @@ jobs:
- run: |
mv -vf assets/changelog/* .
cd assets
find . -type f | xargs mv -fvt .
# find . -type f | xargs mv -fvt .
find . -type f | while read f; do mv -fvt . $f; done
- uses: softprops/action-gh-release@v1
with:
body_path: CHANGELOG.md