File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,18 +29,24 @@ jobs:
2929 run : |
3030 VERSION=$(node -p "require('./package.json').version")
3131 VERSION_TAG="v${VERSION}"
32+ # Strip optional .A suffix (X.Y.Z.A -> X.Y.Z) for gopher-orch release tag
33+ ORCH_VERSION=$(echo "$VERSION" | sed 's/^\([0-9]*\.[0-9]*\.[0-9]*\).*/\1/')
34+ ORCH_TAG="v${ORCH_VERSION}"
3235 echo "version=${VERSION}" >> $GITHUB_OUTPUT
3336 echo "version_tag=${VERSION_TAG}" >> $GITHUB_OUTPUT
37+ echo "orch_tag=${ORCH_TAG}" >> $GITHUB_OUTPUT
3438 echo "dry_run=${{ env.DRY_RUN }}" >> $GITHUB_OUTPUT
3539 echo "Version: ${VERSION}"
3640 echo "Version Tag: ${VERSION_TAG}"
41+ echo "Orch Tag: ${ORCH_TAG}"
3742
3843 - name : Download all release assets
3944 env :
4045 GH_TOKEN : ${{ secrets.GOPHER_ORCH_TOKEN }}
4146 run : |
4247 # Download all assets from the private gopher-orch repo
43- gh release download ${{ steps.version.outputs.version_tag }} \
48+ # Use orch_tag (X.Y.Z) to download from gopher-orch, stripping optional .A suffix
49+ gh release download ${{ steps.version.outputs.orch_tag }} \
4450 -R GopherSecurity/gopher-orch \
4551 -D downloads
4652
Original file line number Diff line number Diff line change @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99## [ Unreleased]
1010
1111
12+ ## [ 0.1.12.2] - 2026-04-21
13+
14+ ### Fixed
15+
16+ - Fix CI publish workflow: strip optional ` .A ` suffix from version when downloading gopher-orch release assets (X.Y.Z.A → X.Y.Z)
17+
1218## [ 0.1.12.1] - 2026-04-21
1319
1420### Fixed
@@ -153,7 +159,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
153159---
154160
155161[ Unreleased ] : https://github.com/GopherSecurity/gopher-mcp-js/compare/v0.1.0-20260227-124047...HEAD
156- [ 0.1.12.1] : https://github.com/GopherSecurity/gopher-mcp-js/compare/v0.1.0-20260227-124047...v0.1.12.1[0.1.12 ] : https://github.com/GopherSecurity/gopher-mcp-js/compare/v0.1.2...v0.1.12
162+ [ 0.1.12.2 ] : https://github.com/GopherSecurity/gopher-mcp-js/compare/v0.1.12.1...v0.1.12.2
163+ [ 0.1.12.1 ] : https://github.com/GopherSecurity/gopher-mcp-js/compare/v0.1.12...v0.1.12.1
164+ [ 0.1.12 ] : https://github.com/GopherSecurity/gopher-mcp-js/compare/v0.1.2...v0.1.12
157165[ 0.1.2 ] : https://github.com/GopherSecurity/gopher-mcp-js/compare/v0.1.1...v0.1.2
158166[ 0.1.1 ] : https://github.com/GopherSecurity/gopher-mcp-js/compare/v0.1.0-20260227-124047...v0.1.1
159167[ 0.1.0-20260227-124047 ] : https://github.com/GopherSecurity/gopher-mcp-js/compare/v0.1.0-20260226-072516...v0.1.0-20260227-124047
Original file line number Diff line number Diff line change 11{
22 "name" : " @gopher.security/gopher-mcp-js" ,
3- "version" : " 0.1.12.1 " ,
3+ "version" : " 0.1.12.2 " ,
44 "description" : " TypeScript SDK for Gopher Orch - AI Agent orchestration framework with native performance" ,
55 "main" : " dist/index.js" ,
66 "types" : " dist/index.d.ts" ,
4040 "koffi" : " ^2.9.0"
4141 },
4242 "optionalDependencies" : {
43- "@gopher.security/gopher-orch-darwin-arm64" : " 0.1.12.1 " ,
44- "@gopher.security/gopher-orch-darwin-x64" : " 0.1.12.1 " ,
45- "@gopher.security/gopher-orch-linux-arm64" : " 0.1.12.1 " ,
46- "@gopher.security/gopher-orch-linux-x64" : " 0.1.12.1 " ,
47- "@gopher.security/gopher-orch-win32-arm64" : " 0.1.12.1 " ,
48- "@gopher.security/gopher-orch-win32-x64" : " 0.1.12.1 "
43+ "@gopher.security/gopher-orch-darwin-arm64" : " 0.1.12.2 " ,
44+ "@gopher.security/gopher-orch-darwin-x64" : " 0.1.12.2 " ,
45+ "@gopher.security/gopher-orch-linux-arm64" : " 0.1.12.2 " ,
46+ "@gopher.security/gopher-orch-linux-x64" : " 0.1.12.2 " ,
47+ "@gopher.security/gopher-orch-win32-arm64" : " 0.1.12.2 " ,
48+ "@gopher.security/gopher-orch-win32-x64" : " 0.1.12.2 "
4949 },
5050 "devDependencies" : {
5151 "@types/jest" : " ^29.5.11" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " @gopher.security/gopher-orch-darwin-arm64" ,
3- "version" : " 0.1.12.1 " ,
3+ "version" : " 0.1.12.2 " ,
44 "description" : " macOS ARM64 (Apple Silicon) native binaries for gopher-orch" ,
55 "license" : " MIT" ,
66 "repository" : {
Original file line number Diff line number Diff line change 11{
22 "name" : " @gopher.security/gopher-orch-darwin-x64" ,
3- "version" : " 0.1.12.1 " ,
3+ "version" : " 0.1.12.2 " ,
44 "description" : " macOS x64 (Intel) native binaries for gopher-orch" ,
55 "license" : " MIT" ,
66 "repository" : {
Original file line number Diff line number Diff line change 11{
22 "name" : " @gopher.security/gopher-orch-linux-arm64" ,
3- "version" : " 0.1.12.1 " ,
3+ "version" : " 0.1.12.2 " ,
44 "description" : " Linux ARM64 native binaries for gopher-orch" ,
55 "license" : " MIT" ,
66 "repository" : {
Original file line number Diff line number Diff line change 11{
22 "name" : " @gopher.security/gopher-orch-linux-x64" ,
3- "version" : " 0.1.12.1 " ,
3+ "version" : " 0.1.12.2 " ,
44 "description" : " Linux x64 native binaries for gopher-orch" ,
55 "license" : " MIT" ,
66 "repository" : {
Original file line number Diff line number Diff line change 11{
22 "name" : " @gopher.security/gopher-orch-win32-arm64" ,
3- "version" : " 0.1.12.1 " ,
3+ "version" : " 0.1.12.2 " ,
44 "description" : " Windows ARM64 native binaries for gopher-orch" ,
55 "license" : " MIT" ,
66 "repository" : {
Original file line number Diff line number Diff line change 11{
22 "name" : " @gopher.security/gopher-orch-win32-x64" ,
3- "version" : " 0.1.12.1 " ,
3+ "version" : " 0.1.12.2 " ,
44 "description" : " Windows x64 native binaries for gopher-orch" ,
55 "license" : " MIT" ,
66 "repository" : {
You can’t perform that action at this time.
0 commit comments