Skip to content

Commit 3ca0584

Browse files
committed
Add missing yarn install as fallback
1 parent 43ecbd3 commit 3ca0584

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.diploi/helm/app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ spec:
4242
- /bin/sh
4343
- -c
4444
- |
45-
if [ -f yarn.lock ]; then yarn --frozen-lockfile; \
45+
if [ -f yarn.lock ]; then yarn --frozen-lockfile || yarn install; \
4646
elif [ -f package-lock.json ]; then npm ci || npm i; \
4747
elif [ -f pnpm-lock.yaml ]; then pnpm i --frozen-lockfile || pnpm i; \
4848
elif [ -f package.json ]; then

0 commit comments

Comments
 (0)