From c64bf7daca7c9e73bebf86a0da261c492eb62ea7 Mon Sep 17 00:00:00 2001 From: RustyTake-Off <109174317+RustyTake-Off@users.noreply.github.com> Date: Sat, 29 Jun 2024 16:27:57 +0200 Subject: [PATCH] Update --- .github/actions/templates/moveFiles/action.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 {} . \;