Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
RustyTake-Off committed Jun 29, 2024
1 parent 31954cb commit dcecff5
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/actions/templates/moveFiles/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,14 @@ runs:
echo '---'
# mv ${{ inputs.targetBranchName }}/{.?*,*} . --force --verbose
rsync -a --include '.*/*' --exclude '.*' "${{ inputs.targetBranchName }}/" ./
rsync -a --force --verbose \
--include '.*' \
--include '*/' \
--exclude '.' \
--exclude '..' \
--exclude 'README.md' \
"${{ inputs.targetBranchName }}" .
echo '---'
Expand Down

0 comments on commit dcecff5

Please sign in to comment.