mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-17 10:00:44 +08:00
chore: fix file move issue in ci.yml
This commit is contained in:
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user