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 368b93b commit 852d840
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/actions/templates/moveFiles/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,14 @@ runs:
# Checkout directory and move files
git checkout ${{ inputs.sourceBranchName }} -- ${{ inputs.targetBranchName }}
find "${{ inputs.targetBranchName }}" -maxdepth 1 -name '*' -exec cp -r -u {} . \;
find "${{ inputs.targetBranchName }}" -maxdepth 1 -name '*' -type d -exec cp -r -u {} . \;
find "${{ inputs.targetBranchName }}" -maxdepth 1 -name '.*[!.]*' -exec cp -r -u {} . \;
find "${{ inputs.targetBranchName }}" -maxdepth 1 -name '.*[!.]*' -type d -exec cp -r -u {} . \;
find "${{ inputs.targetBranchName }}" -maxdepth 1 -name '*' -exec cp -r {} . \;
find "${{ inputs.targetBranchName }}" -maxdepth 1 -name '.*[!.]*' -exec cp -r {} . \;
find "${{ inputs.targetBranchName }}" -maxdepth 1 -name '.*[!.]*' -type d -exec cp -r {} . \;
ls -al
git status --short
# Clean up
# rmdir ${{ inputs.targetBranchName }}
rmdir ${{ inputs.targetBranchName }}
# rm README.md

0 comments on commit 852d840

Please sign in to comment.