mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 08:25:07 +03:00
fix(eas-cli)
`build-ci` removed from `package.json`s in v6 closes #4822
This commit is contained in:
parent
a525849c91
commit
610c845f40
1 changed files with 8 additions and 2 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue