This config of me
pipelines:
default:
- step:
deployment: staging
script:
- pipe: atlassian/ssh-run:0.1.1
variables:
SSH_USER: 'root'
SERVER: 'xx.x.x.x'
SSH_KEY: $MY_SSH_KEY
MODE: 'script'
COMMAND: 'deploy.sh'
But when run deployment. I receive message: /pipe.sh: line 70: deploy.sh: No such file or directory
Please let me know if any wrong config from me!!!
Hi David. Your configuration looks valid. Note, however, that the script you want to run has to be committed to the repository if you want to execute the pipe with the script mode. Otherwise, if your script has been previously uploaded to your server and you just want to run it, you should set the mode to command and tell the pipe to run the script that is available on your remote server
COMMAND: bash deploy.sh
of
COMMAND: ./deploy.sh
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.