Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,16 @@ jobs:

- run: bun run build

- name: Verify tag matches package version
run: |
PACKAGE_VERSION=$(node -p "require('./package.json').version")
TAG_VERSION="${GITHUB_REF_NAME#v}"

if [ "$TAG_VERSION" != "$PACKAGE_VERSION" ]; then
echo "Tag version v$TAG_VERSION does not match package.json version $PACKAGE_VERSION"
exit 1
fi

- name: Setup Node.js for npm publish
uses: actions/setup-node@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "opencode-mem",
"version": "2.19.1",
"version": "2.19.4",
"description": "OpenCode plugin that gives coding agents persistent memory using local vector database",
"type": "module",
"main": "dist/plugin.js",
Expand Down
Loading