appleboy / scp-action

GitHub Action that copy files and artifacts via SSH.
https://github.com/marketplace/actions/scp-command-to-transfer-files
MIT License
1.22k stars 136 forks source link

✨ Auto create target dir #167

Open jd-solanki opened 7 months ago

jd-solanki commented 7 months ago

Hello 👋🏻

Thanks for this action. This is super useful. Recently, I was creating a workflow and it was pretty simple. I noticed one improvement we can make to scp-action is that allow auto creating target dir if doesn't exist using mkdir -p.

As an alternative, I've to use another action ssh-action to just create a dir via SSH and had to use scp-action after that.