We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0f063e commit 3152400Copy full SHA for 3152400
.github/workflows/deploy-next.yml
@@ -28,12 +28,13 @@ jobs:
28
GH_TOKEN_FOR_STORYBOOK: ${{ github.actor }}:${{ secrets.ADMIN_TOKEN }}
29
run: |
30
if [ "$NEXT_RELEASE_ENABLED" == "true" ]; then
31
+ npm install
32
+
33
if npm run util:is-next-deployable; then
34
git config --global user.email "github-actions[bot]@users.noreply.github.com"
35
git config --global user.name "github-actions[bot]"
36
- npm install
- # version the packages with lerna before building to ensure
37
+ # version the packages with lerna before building to ensure
38
# the version in the CC source code preamble is correct for deployment
39
npm run version:next
40
npm run build
0 commit comments