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 b8d90ca commit c64bf7d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/actions/templates/moveFiles/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 {} . \;
Expand Down

0 comments on commit c64bf7d

Please sign in to comment.