fix(eas-cli)

`build-ci` removed from `package.json`s in v6

closes #4822
This commit is contained in:
Jacob Heider 2024-01-12 10:05:51 -05:00 committed by Jacob Heider
parent a525849c91
commit 610c845f40

View file

@ -20,10 +20,16 @@ build:
- mkdir -p "{{prefix}}"
- yarn install
- run: yarn build-ci
# `build-ci` not present in v6
- run: BUILD_CMD="build-ci"
if: <6
- run: BUILD_CMD="build"
if: '>=6'
- run: yarn $BUILD_CMD
working-directory: packages/eas-json/
- yarn build-ci
- yarn $BUILD_CMD
- cp -r * {{prefix}}
- run: