Skip to content

Commit 5ea1f04

Browse files
authored
fix: include MCPB file directly in GitHub release assets (#194)
## Summary - Updates the create-release GitHub Action to include both the `.mcpb` file and the `-release.zip` bundle in release assets - Users can now download the MCPB package directly without extracting the zip ## Changes - Modified `.github/actions/create-release/action.yml` to add `dist/*.mcpb` to the files uploaded to GitHub releases ## Testing - Verified file patterns match existing build artifacts in `dist/` directory - Both `*.mcpb` and `*-release.zip` patterns correctly identify the release files Fixes #193 🤖 Generated with [Claude Code](https://claude.ai/code)
1 parent ccab01a commit 5ea1f04

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

.github/actions/create-release/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ runs:
5555
with:
5656
name: "Quilt MCP MCPB v${{ inputs.package-version }}"
5757
files: |
58+
dist/*.mcpb
5859
dist/*-release.zip
5960
draft: false
6061
prerelease: ${{ contains(inputs.package-version, '-') }}

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ All notable changes to this project will be documented in this file.
66
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
77
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

9+
## [0.6.12] - 2025-09-22
10+
11+
### Fixed
12+
13+
- **GitHub Releases**: Include MCPB file directly in release assets (#193)
14+
- Users can now download the `.mcpb` file directly from GitHub releases
15+
- Previously only the release zip bundle was available
16+
- Both `*.mcpb` and `*-release.zip` files are now uploaded as release assets
17+
918
## [0.6.11] - 2025-09-21
1019

1120
### Changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "quilt-mcp"
3-
version = "0.6.11"
3+
version = "0.6.12"
44
description = "Secure MCP server for accessing Quilt data with JWT authentication"
55
readme = "README.md"
66
requires-python = ">=3.11"

0 commit comments

Comments
 (0)