Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix publish command #325

Merged
merged 1 commit into from
May 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/blui-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
- run: yarn --immutable
- run: npm run publish:package -b ${{env.BRANCH}}
- run: npm run publish:package -- -b ${{env.BRANCH}}
working-directory: packages/icon-font

publish_icons_svg:
Expand All @@ -127,7 +127,7 @@ jobs:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
- run: yarn --immutable
- run: npm run publish:package -b ${{env.BRANCH}}
- run: npm run publish:package -- -b ${{env.BRANCH}}
working-directory: packages/svg

publish_icons_mui:
Expand All @@ -152,7 +152,7 @@ jobs:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
- run: yarn --immutable
- run: npm run publish:package -b ${{env.BRANCH}}
- run: npm run publish:package -- -b ${{env.BRANCH}}
working-directory: packages/mui

publish_rn_vector_icons:
Expand All @@ -177,5 +177,5 @@ jobs:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
- run: yarn --immutable
- run: npm run publish:package -b ${{env.BRANCH}}
- run: npm run publish:package -- -b ${{env.BRANCH}}
working-directory: packages/rn-vector
Loading