Skip to content

Commit dbbadd8

Browse files
committed
v7.22.0
1 parent a7c2558 commit dbbadd8

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/github-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ jobs:
2727
- run: npm ci
2828
- run: npm run lint --workspace=packages
2929
- run: npm run build --workspace=packages
30-
- run: npm publish --workspace=main
30+
- run: npm publish --workspace=packages/main
3131
env:
3232
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ jobs:
2424
- run: npm ci
2525
- run: npm run lint --workspace=packages
2626
- run: npm run build --workspace=packages
27-
- run: npm publish --workspace=main
27+
- run: npm publish --workspace=packages/main
2828
env:
2929
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"license": "Apache-2.0",
66
"scripts": {
77
"build": "npm run build --workspaces",
8-
"build:worker": "npm run build --workspace=worker",
8+
"build:worker": "npm run build --workspace=packages/worker",
99
"test": "npm run test --workspaces",
10-
"test:worker": "npm run test --workspace=worker",
11-
"test:main": "npm run test --workspace=main",
10+
"test:worker": "npm run test --workspace=packages/worker",
11+
"test:main": "npm run test --workspace=packages/main",
1212
"lint": "npm run lint --workspaces"
1313
},
1414
"workspaces": [

packages/main/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codebam/cf-workers-telegram-bot",
3-
"version": "7.21.0",
3+
"version": "7.22.0",
44
"description": "serverless telegram bot on cf workers",
55
"main": "./dist/main.js",
66
"module": "./dist/main.js",

0 commit comments

Comments
 (0)