Skip to content

Commit 31148ec

Browse files
committed
ci(release): build step should be done before release
1 parent 36f3a32 commit 31148ec

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ jobs:
1414
command: "lint"
1515
- name: "Stylelint"
1616
command: "stylelint"
17-
- name: "Build"
18-
command: "build"
1917
env:
2018
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
2119
steps:
@@ -43,6 +41,9 @@ jobs:
4341
with:
4442
npm_token: ${{secrets.npm_token}}
4543
- uses: ./.github/actions/git-creds
44+
- name: Run Build
45+
shell: bash
46+
run: yarn lerna run build --since=origin/master --include-filtered-dependencies
4647
- name: Generate new versions
4748
run: yarn lerna version --conventional-commits -y
4849
- run: yarn config set registry https://registry.npmjs.org/

0 commit comments

Comments
 (0)