Skip to content

Commit b37c59f

Browse files
committed
chore: update lockfile and workflows
1 parent fcb94eb commit b37c59f

5 files changed

Lines changed: 178 additions & 9 deletions

File tree

.github/workflows/alpha-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: git config --global user.email "hello@ignite.com" && git config --global user.name "Lerna CI"
2727

2828
- name: Build
29-
run: pnpm build
29+
run: pnpm i && pnpm build
3030

3131
- name: Publish
3232
run: pnpm alpha

.github/workflows/major-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: git config --global user.email "hello@ignite.com" && git config --global user.name "Lerna CI"
2727

2828
- name: Build
29-
run: pnpm build
29+
run: pnpm i && pnpm build
3030

3131
- name: Publish
3232
run: pnpm major

.github/workflows/minor-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: git config --global user.email "hello@ignite.com" && git config --global user.name "Lerna CI"
2727

2828
- name: Build
29-
run: pnpm build
29+
run: pnpm i && pnpm build
3030

3131
- name: Publish
3232
run: pnpm minor

.github/workflows/patch-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
run: git config --global user.email "hello@ignite.com" && git config --global user.name "Lerna CI"
2626

2727
- name: Build
28-
run: pnpm build
28+
run: pnpm i && pnpm build
2929

3030
- name: Publish
3131
run: pnpm patchrel

0 commit comments

Comments
 (0)