Copying file from remote server in Github actions
It is a little pain to copy files from a remote server in a GitHub action as you need to do authenticate and if your key is passphrase protected then it adds extra pain to it. First, we should not use sensitive data directly, that’s why GitHub provide feature like secrets. So as per our…