Bitbucket pipeline - Unable to deploy dist folder to my server

I am unable to deploy dist folder to my server through bitbucket pipeline

# You can specify a custom docker image from Docker Hub as your build environment.

image: atlassian/default-image:2

pipelines:

  default:

    - parallel:

      - step:

          name: 'Build and Test'

          image: node:10.16.2

          caches:

            - node

          script:

            - yarn install

            - yarn test

            - yarn  run build

          artifacts:

            - dist/**

            - vendor/**

    # 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 Production'

        image: node:10.16.2

        deployment: production

        trigger: 'manual'

        script:

          - npm install

          - npm test

          - yarn

          - yarn build:production

          - apt-get update

          - apt-get -qq install git-ftp

          - git ftp push --insecure --user $FTP_USER --passwd $FTP_PASS ftpes://ftp.mydomain.dev/public_html/wp-content/themes/cule --all

Even though I have dist folder under artifacts, am I missing anything?

This topic was automatically closed after 42 days. New replies are no longer allowed.