38 lines
1.4 KiB
YAML
38 lines
1.4 KiB
YAML
# This is a sample build configuration for JavaScript.
|
|
# Check our guides at https://confluence.atlassian.com/x/14UWN for more examples.
|
|
# Only use spaces to indent your .yml configuration.
|
|
# -----
|
|
# You can specify a custom docker image from Docker Hub as your build environment.
|
|
image: node:10.15.3
|
|
|
|
pipelines:
|
|
branches:
|
|
master:
|
|
- step:
|
|
caches:
|
|
- node
|
|
script: # Modify the commands below to build your repository.
|
|
- npm install
|
|
- npm install -g @angular/cli
|
|
- ng build
|
|
- ls -ltr
|
|
- cd dist
|
|
- echo "Number of files in dist"
|
|
- ls -l . | egrep -c '^-'
|
|
- pipe: atlassian/aws-s3-deploy:0.3.8
|
|
variables:
|
|
AWS_ACCESS_KEY_ID: $AWS_ACCESS_KEY_ID
|
|
AWS_SECRET_ACCESS_KEY: $AWS_SECRET_ACCESS_KEY
|
|
AWS_DEFAULT_REGION: 'ap-south-1'
|
|
S3_BUCKET: 'autodeploy001'
|
|
LOCAL_PATH: $(pwd)
|
|
# CONTENT_ENCODING: '<string>' # Optional.
|
|
# ACL: '<string>' # Optional.
|
|
# STORAGE_CLASS: '<string>' # Optional.
|
|
# CACHE_CONTROL: '<string>' # Optional.
|
|
# EXPIRES: '<timestamp>' # Optional.
|
|
# DELETE_FLAG: '<boolean>' # Optional.
|
|
# EXTRA_ARGS: '<string>' # Optional.
|
|
# DEBUG: '<boolean>' # Optional.
|
|
|