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 dcecff5 commit 7b2c32a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/actions/templates/moveFiles/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,18 @@ runs:
# Checkout directory and move files
git checkout ${{ inputs.sourceBranchName }} -- ${{ inputs.targetBranchName }}
ls -al
echo '---'
ls -al ${{ inputs.targetBranchName }}
echo '---'
rsync -a --force --verbose \
--include '.*' \
--include '*/' \
--exclude '.' \
--exclude '..' \
--exclude 'README.md' \
"${{ inputs.targetBranchName }}" .
ls -al
echo '---'
find "${{ inputs.targetBranchName }}" -maxdepth 1 -name '.*[!.]*' -exec cp -r {} . \;
find "${{ inputs.targetBranchName }}" -maxdepth 1 -name '.*[!.]*' -type d -exec cp -r {} . \;
echo '---'
Expand Down

0 comments on commit 7b2c32a

Please sign in to comment.