diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9dd3a28..c06d4a3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -3,9 +3,6 @@ name: Publish to npm on: release: types: [published] - push: - tags: - - 'v*.*.*' workflow_dispatch: jobs: diff --git a/CHANGELOG.md b/CHANGELOG.md index aca3868..845fcea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.9.7] - 2026-06-26 + +### Fixed +- Publish script fixup + ## [0.9.6] - 2026-06-26 ### Added diff --git a/package.json b/package.json index 90c6345..daff57c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@mozilla/firefox-devtools-mcp", - "version": "0.9.6", + "version": "0.9.7", "description": "Model Context Protocol (MCP) server for Firefox DevTools automation", "author": "Mozilla", "license": "MIT OR Apache-2.0", @@ -8,7 +8,7 @@ "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { - "firefox-devtools-mcp": "./dist/index.js" + "firefox-devtools-mcp": "dist/index.js" }, "scripts": { "dev": "tsx watch src/index.moz.ts",