Skip to content

Commit c8f332d

Browse files
authored
Adding DBM publish package (#27)
* Adding DBM publish packaghe * Adding publish step
1 parent 2caf697 commit c8f332d

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/publish-package.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,25 @@ jobs:
1919
scope: '@devrev'
2020
- run: npm install
2121
- run: npx nx run-many --target=build --all --parallel
22+
- run: |
23+
cd ./dist/meerkat-dbm
24+
echo "//npm.pkg.github.com/:_authToken=${{secrets.NPM_PACKAGE_PUBLISH_TOKEN}}" >> .npmrc
25+
npm publish
26+
2227
- run: |
2328
cd ./dist/meerkat-core
2429
echo "//npm.pkg.github.com/:_authToken=${{secrets.NPM_PACKAGE_PUBLISH_TOKEN}}" >> .npmrc
2530
npm publish
31+
2632
- run: |
2733
cd ./dist/meerkat-node
2834
echo "//npm.pkg.github.com/:_authToken=${{secrets.NPM_PACKAGE_PUBLISH_TOKEN}}" >> .npmrc
2935
npm publish
36+
3037
- run: |
3138
cd ./dist/meerkat-browser
3239
echo "//npm.pkg.github.com/:_authToken=${{secrets.NPM_PACKAGE_PUBLISH_TOKEN}}" >> .npmrc
3340
npm publish
41+
3442
env:
3543
NODE_AUTH_TOKEN: ${{secrets.NPM_PACKAGE_PUBLISH_TOKEN}}

benchmarking/benchmarking-app/src/app/benchmarking-tests/dbm-benchmarking.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ describe('Benchmarking DBMs', () => {
1616
let serverStarted = false;
1717
while (!serverStarted) {
1818
try {
19-
const response = await axios.get('http://localhost:4200'); // Replace with your server's URL
19+
const response = await axios.get('http://localhost:4200');
2020
if (response.status === 200) {
2121
serverStarted = true;
2222
} else {

0 commit comments

Comments
 (0)