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
22 changes: 6 additions & 16 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,22 +162,13 @@ jobs:
- Automated version bump from ${{ steps.version.outputs.current_version }} to ${{ steps.version.outputs.new_version }}
- Updated CHANGELOG.md with release notes
- Version.ts will be auto-generated during build process

Closes issues referenced in commits since v${{ steps.version.outputs.current_version }}

πŸ€– Generated by automated release workflow"

# Create git tag for the release (will be pushed with the branch)
git tag -a "v${{ steps.version.outputs.new_version }}" -m "Release ${{ steps.version.outputs.new_version }}

- Automated release from version bump PR
- NPM package: @jerfowler/agent-comm-mcp-server@${{ steps.version.outputs.new_version }}

πŸ€– Generated by automated release workflow"
# Push the branch and tag

# Push the branch (NO TAG - tag will be created after PR merge by publish workflow)
git push origin "$BRANCH_NAME"
git push origin "v${{ steps.version.outputs.new_version }}"

# Create PR using GitHub CLI
gh pr create \
Expand All @@ -189,13 +180,12 @@ jobs:
### πŸ“¦ Changes Included
- \`package.json\`: Updated version to ${{ steps.version.outputs.new_version }}
- \`CHANGELOG.md\`: Generated changelog entries for new version
- Git tag \`v${{ steps.version.outputs.new_version }}\` created and pushed
- Generated files (\`version.ts\`) will be created during CI build

### πŸ”„ Next Steps After Merge
1. **NPM Publication**: Automated publish to [@jerfowler/agent-comm-mcp-server](https://www.npmjs.com/package/@jerfowler/agent-comm-mcp-server)
2. **GitHub Release**: Automated release creation with changelog notes
3. **Git Tagging**: Tag already created and pushed
1. **Git Tag Creation**: Tag \`v${{ steps.version.outputs.new_version }}\` will be created on main
2. **NPM Publication**: Automated publish to [@jerfowler/agent-comm-mcp-server](https://www.npmjs.com/package/@jerfowler/agent-comm-mcp-server)
3. **GitHub Release**: Automated release creation with changelog notes

### πŸ“‹ Validation Completed
- βœ… Full CI pipeline passed
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": "@jerfowler/agent-comm-mcp-server",
"version": "0.9.2",
"version": "0.10.0",
"description": "MCP server for AI agent task communication and delegation with diagnostic lifecycle visibility",
"type": "module",
"main": "./dist/index.js",
Expand Down
4 changes: 2 additions & 2 deletions src/generated/version.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/**
* Auto-generated file - DO NOT EDIT
* Generated from package.json at build time
* Source: @jerfowler/agent-comm-mcp-server@0.9.2
* Source: @jerfowler/agent-comm-mcp-server@0.10.0
*/

export const PACKAGE_INFO = {
name: '@jerfowler/agent-comm-mcp-server',
version: '0.9.2',
version: '0.10.0',
description: 'MCP server for AI agent task communication and delegation with diagnostic lifecycle visibility',
author: 'Jeremy Fowler',
repository: {
Expand Down