Hi everyone,
I'm trying to build a pipeline to deploy our Ionic 4 Beta project to browsers and I'm running into an odd issue. The angular.json file specifies that outputPath has been defined as a 'www' folder. This folder isn't being generated so I don't get any output when ionic build is executed. Here's my yaml:
image: node:10.12
pipelines:
default:
- step:
caches: - node
script: # Modify the commands below to build your repository.
- npm install -g ionic
- npm install
- ionic build --prod
- step:
name: Deploy to S3
deployment: test
image: atlassian/pipelines-awscli
script: - aws s3 sync --delete . s3://my-bucket-name
Realized that I missed adding artifacts to a yaml. Added that now I'm in business
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.