We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13d844d commit c1a6da1Copy full SHA for c1a6da1
.github/workflows/publish.yml
@@ -72,8 +72,9 @@ jobs:
72
npm version "$NEW_VERSION" --no-git-tag-version
73
git add package* && git commit -m "chore(release): $NEW_VERSION [skip ci]"
74
75
- - name: Install packages
76
- run: npm install
+ # Install dependencies after the version update so that
+ # the build outputs refer to the newest version of inner packages
77
+ - uses: ./.github/actions/install-dependencies
78
79
- name: Build packages
80
run: npm run build
0 commit comments