diff --git a/.github/actions/templates/moveFiles/action.yaml b/.github/actions/templates/moveFiles/action.yaml index c5454f3..16ec8e1 100644 --- a/.github/actions/templates/moveFiles/action.yaml +++ b/.github/actions/templates/moveFiles/action.yaml @@ -43,11 +43,16 @@ runs: # Checkout directory and move files git checkout ${{ inputs.sourceBranchName }} -- ${{ inputs.targetBranchName }} ${{ inputs.otherDirs }} &>/dev/null + echo '===============' + ls -al + echo '===============' + [ -n "${{ inputs.otherSharedFiles }}" ] && \ echo ${{ inputs.otherSharedFiles }} - + echo '===============' ls -al + echo '===============' cp -r "${{ inputs.targetBranchName }}"/* . find "${{ inputs.targetBranchName }}" -maxdepth 1 -name '.*[!.]*' -exec cp -r {} . \;