Skip to content

Commit

Permalink
v7.22.0
Browse files Browse the repository at this point in the history
  • Loading branch information
codebam committed May 26, 2024
1 parent a7c2558 commit dbbadd8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/github-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ jobs:
- run: npm ci
- run: npm run lint --workspace=packages
- run: npm run build --workspace=packages
- run: npm publish --workspace=main
- run: npm publish --workspace=packages/main
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
2 changes: 1 addition & 1 deletion .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ jobs:
- run: npm ci
- run: npm run lint --workspace=packages
- run: npm run build --workspace=packages
- run: npm publish --workspace=main
- run: npm publish --workspace=packages/main
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"license": "Apache-2.0",
"scripts": {
"build": "npm run build --workspaces",
"build:worker": "npm run build --workspace=worker",
"build:worker": "npm run build --workspace=packages/worker",
"test": "npm run test --workspaces",
"test:worker": "npm run test --workspace=worker",
"test:main": "npm run test --workspace=main",
"test:worker": "npm run test --workspace=packages/worker",
"test:main": "npm run test --workspace=packages/main",
"lint": "npm run lint --workspaces"
},
"workspaces": [
Expand Down
2 changes: 1 addition & 1 deletion packages/main/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@codebam/cf-workers-telegram-bot",
"version": "7.21.0",
"version": "7.22.0",
"description": "serverless telegram bot on cf workers",
"main": "./dist/main.js",
"module": "./dist/main.js",
Expand Down

0 comments on commit dbbadd8

Please sign in to comment.