Skip to content

Commit a4aa186

Browse files
authored
ci: actual release-please (#8)
disable npm publishing for now.
1 parent 092db6f commit a4aa186

File tree

5 files changed

+28
-1
lines changed

5 files changed

+28
-1
lines changed

.github/workflows/publish-to-npm-on-tag.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
NPM_TOKEN: ${{secrets.NPM_TOKEN}}
2222
TAG_NAME: ${{github.ref_name}}
2323
run: |
24+
exit 0 # for now disable.
2425
npm config set registry 'https://wombat-dressing-room.appspot.com/'
2526
npm config set '//wombat-dressing-room.appspot.com/:_authToken' '${NPM_TOKEN}'
2627
npm publish --provenance --access public
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
6+
permissions: read-all
7+
name: release-please
8+
9+
jobs:
10+
release-please:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: googleapis/release-please-action@v4
14+
with:
15+
token: ${{ secrets.BROWSER_AUTOMATION_BOT_TOKEN }}
16+
target-branch: main
17+
config-file: release-please-config.json
18+
manifest-file: .release-please-manifest.json

.release-please-manifest.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
".": "0.0.1"
3+
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "chrome-devtools-mcp",
3-
"version": "0.1.0",
3+
"version": "0.0.1",
44
"description": "MCP server for Chrome DevTools",
55
"type": "module",
66
"bin": {

release-please-config.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"packages": {
3+
".": {}
4+
}
5+
}

0 commit comments

Comments
 (0)