Skip to content

Commit

Permalink
add public to webcomponents
Browse files Browse the repository at this point in the history
  • Loading branch information
erickgonzalez committed Mar 14, 2024
1 parent bcfc833 commit cac231e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/publish_webcomponents.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,4 @@ jobs:
cd core-web
npm set //registry.npmjs.org/:_authToken ${{ secrets.NPM_ORG_TOKEN }}
cd dist/libs/dotcms-webcomponents
if [[ $(basename "${{ github.ref }}") =~ ^release-.* ]]; then
npm publish --tag rc --public
fi
if [[ $(basename "${{ github.ref }}") =~ ^master ]]; then
npm publish --tag next
fi
npm publish --access public
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ xdescribe('DotAssetService', () => {
const assetService = new DotAssetService();

const mockSuccessResponse = {};
const mockJsonPromise = Promise.resolve(mockSuccessResponse); // 2
const mockJsonPromise = Promise.resolve(mockSuccessResponse);
const mockFetchPromise = Promise.resolve({
// 3
json: () => mockJsonPromise,
Expand Down

0 comments on commit cac231e

Please sign in to comment.