Skip to content

Commit

Permalink
Merge pull request #233 from threefoldtech/development_publish
Browse files Browse the repository at this point in the history
Revert publish changes
  • Loading branch information
AhmedHanafy725 authored May 11, 2023
2 parents 143c0ba + fb4beb2 commit 0ca81ec
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,14 @@ jobs:
- name: Build
run: lerna run build --no-private
- name: Publish
run: lerna run publish --no-private
run: |
yarn workspace @threefold/tfchain_client publish
yarn workspace @threefold/rmb_direct_client publish
yarn workspace @threefold/rmb_peer_client publish
yarn workspace @threefold/rmb_peer_server publish
yarn workspace @threefold/grid_client publish
yarn workspace @threefold/grid_http_server publish
yarn workspace @threefold/grid_rmb_server publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

Expand Down
3 changes: 1 addition & 2 deletions packages/grid_client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@
"rmb_server": "ts-node --project tsconfig-node.json src/server/rmb_server.ts",
"generate-docs": "typedoc --tsconfig tsconfig-es6.json src/index.ts --out docs/api",
"serve-docs": "http-server docs/api",
"test": "jest",
"publish": "yarn publish --non-interactive"
"test": "jest"
}
}
1 change: 0 additions & 1 deletion packages/grid_http_server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
},
"private": false,
"scripts": {
"publish": "yarn publish --non-interactive",
"build": "tsc --build tsconfig.json",
"start": "ts-node --project tsconfig.json src/index.ts"
}
Expand Down
3 changes: 1 addition & 2 deletions packages/grid_rmb_server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
"private": false,
"scripts": {
"build": "tsc --build tsconfig.json",
"start": "ts-node --project tsconfig.json src/index.ts",
"publish": "yarn publish --non-interactive"
"start": "ts-node --project tsconfig.json src/index.ts"
}
}
3 changes: 1 addition & 2 deletions packages/rmb_direct_client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@
"start": "ts-node --project ./tsconfig-node.json ./examples/direct/node.ts",
"build": "npm-run-all es6-build node-build",
"node-build": "tsc --build tsconfig-node.json",
"es6-build": "tsc --build tsconfig-es6.json",
"publish": "yarn publish --non-interactive"
"es6-build": "tsc --build tsconfig-es6.json"
},
"dependencies": {
"@noble/secp256k1": "^1.7.1",
Expand Down
3 changes: 1 addition & 2 deletions packages/rmb_peer_client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
],
"private": false,
"scripts": {
"build": "tsc --build tsconfig.json",
"publish": "yarn publish --non-interactive"
"build": "tsc --build tsconfig.json"
}
}
3 changes: 1 addition & 2 deletions packages/rmb_peer_server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
],
"private": false,
"scripts": {
"build": "tsc --build tsconfig.json",
"publish": "yarn publish --non-interactive"
"build": "tsc --build tsconfig.json"
}
}
3 changes: 1 addition & 2 deletions packages/tfchain_client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
"node-build": "tsc --build tsconfig-node.json",
"es6-build": "tsc --build tsconfig-es6.json",
"generate-docs": "typedoc --tsconfig tsconfig-es6.json src/index.ts --out docs/api",
"serve-docs": "http-server docs/api",
"publish": "yarn publish --non-interactive"
"serve-docs": "http-server docs/api"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 0ca81ec

Please sign in to comment.