Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

scp-deploy: error usage: scp

jurepetrovic June 3, 2022

Hello,

I'm trying to deploy build using scp-deploy 1.2.1. I followed the example on the page and I get weird error.It seems to me like the scp command is not properly invoked.

Attaching my bitbucket-pipeline.yaml file and screenshot of the error.

Any ideas?

slika.png

 

# The following deployment steps will be executed for each pipeline run. To configure your steps and conditionally deploy see https://support.atlassian.com/bitbucket-cloud/docs/configure-bitbucket-pipelinesyml/
    - step:
        name: 'Deployment to Staging'
        deployment: staging
        script:
          - pipe: atlassian/scp-deploy:1.2.1
            variables:
              USER: $USER
              SERVER: $SERVER
              REMOTE_PATH: '/var/www/scp-deploy/qa_tool/'
              LOCAL_PATH: 'dist/testing-tool/*'

 

Variables are defined, folders are created and the user has permissions.

Thank you for ideas,

Jure

 

 

1 answer

1 accepted

0 votes
Answer accepted
lissyaka June 8, 2022

Hi @jurepetrovic . According to this example , you should have artifacts to deploy, do you have it in your case?


image: node:10.15.3

pipelines:

default:

- step:

name: Build and test

caches:

- node

script:

- npm install

- npm test

- npm run build

artifacts:

- build/**

- step:

name: Deploy artifacts using SCP to PROD

deployment: production

script:

- pipe: atlassian/scp-deploy:1.2.1

variables:

USER: $USER

SERVER: $SERVER

REMOTE_PATH: '/var/www/scp-deploy/html'

LOCAL_PATH: 'build/*'

Also try to add DEBUG: true to your pipeline configuration,maybe we will see more details.

Cheers

jurepetrovic June 8, 2022

Yes, I was missing "artifacts" declaration. Thank you for your help! :)

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
STANDARD
TAGS
AUG Leaders

Atlassian Community Events