Skip to content

Latest commit

 

History

History
45 lines (35 loc) · 893 Bytes

BITBUCKET.md

File metadata and controls

45 lines (35 loc) · 893 Bytes

Bitbucket Pipelines



Create file config:

touch bitbucket-pipelines.yml

Copy the content and paste in bitbucket-pipelines.yml

image: node:latest

pipelines:
  tags:
    - step:
      name: Build
      script:
        - yarn install
        - yarn build
    - step:
      name: Publish
      deployment: production
      script:
        - pipe: atlassian/npm-publish:0.2.0
          variables:
            NPM_TOKEN: $NPM_TOKEN

Example Projects

If you use this CI format, enter your project here.