I have configured 3 steps in pipelines
build UI and static assets
deploy UI to website
Deploy assets to CDN
I notice i have to install yarn for each step and yarn install. Is it possible to only do this for 1 step. Seems strange it has to install yarn and install the packages 3 times before it can run the command.
- step Build UI and assets
script:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.3.2
-export PATH=$HOME/.yarn/bin:$PATH
- yarn install
- yarn run build:ui
- yarn run build:assets
-step Deploy UI to website
script: - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.3.2
- export PATH=$HOME/.yarn/bin:$PATH
- yarn install
- yarn run deploy:ui
Hey Gavin,
you could look at configuring artifacts. You define which folders you want to preserve in your first step, and then these are passed along in your subsequent steps.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.