Skip to content

Commit

Permalink
独立删除无用文件步骤
Browse files Browse the repository at this point in the history
  • Loading branch information
feilongproject committed Aug 16, 2024
1 parent 00d6b0c commit ab452b4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build-jp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,15 @@ jobs:
# dir D:/a/ba-data/ba-data
# dir D:/a/ba-data/extData/output/table

- name: Delete unless file
run: |
del -Include *.bytes,*.bytes.d -Recurse *
working-directory: D:/a/ba-data/extData/output/table

- name: Overwrite files from extData/output/table to current directory
run: |
del -Exclude .git,README.txt -Recurse *
cp -Recurse -Force -Path "D:/a/ba-data/extData/output/table/*" -Destination "."
del -Exclude .git,README.txt -Include *.bytes,*.bytes.d -Recurse *
# - name: List directories after overwriting files
# run: |
Expand Down

0 comments on commit ab452b4

Please sign in to comment.