jam-cloud/bitbucket-pipelines.yml

21 lines
524 B
YAML
Raw Normal View History

2021-10-19 16:15:39 +00:00
image: node:14.17.1
2021-10-19 13:06:04 +00:00
pipelines:
branches:
VRFS-5232-new_react_frontend:
- step:
name: Build Production
script:
2021-10-19 13:07:07 +00:00
- cd jam-ui
2021-10-19 13:06:04 +00:00
- npm install
2021-10-19 19:42:38 +00:00
- CI=false npm run build
2021-10-19 13:06:04 +00:00
artifacts:
- build/**
- step:
name: Deploy to S3
deployment: production
script:
- pipe: atlassian/aws-s3-deploy:1.1.0
variables:
S3_BUCKET: "jamkazam-ui/prd"
LOCAL_PATH: "build"