Skip to content

Commit f5fab5e

Browse files
feat: added verbose to see the logs
1 parent edb7681 commit f5fab5e

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

.github/workflows/next.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,6 @@ jobs:
3232
run: npm publish --access public --tag=next
3333
env:
3434
NPM_TOKEN: ${{secrets.NPM_TOKEN}}
35-
36-
- name: Unpublish to npmjs (for testing)
37-
run: npm unpublish @innovaccer/design-system@6.0.0-0
38-
env:
39-
NPM_TOKEN: ${{secrets.NPM_TOKEN}}
4035

4136
- name: remove .npmrc
4237
run: rm -rf .npmrc
@@ -56,7 +51,9 @@ jobs:
5651
git push https://${{ secrets.GH_TOKEN }}@github.com/$GITHUB_REPOSITORY.git $(node ./getVersion.js)
5752
5853
- name: deploy storybook
59-
run: npm run deploy-storybook -- --bucket-path=webui-mds-sb-next --aws-profile=NONE --ci
54+
run: |
55+
echo "Starting storybook deployment..."
56+
npm run deploy-storybook -- --bucket-path=webui-mds-sb-next --aws-profile=NONE --ci --verbose
6057
env:
6158
AWS_SECRET_ACCESS_KEY: ${{ secrets.DOCS_KEY }}
6259
AWS_ACCESS_KEY_ID: ${{ secrets.DOCS_KEY_ID }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@innovaccer/design-system",
3-
"version": "5.0.0-4",
3+
"version": "5.0.0-5",
44
"description": "React components library project for Innovaccer Design System",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",

0 commit comments

Comments
 (0)