Skip to content

Commit 40a86c8

Browse files
committed
start with debugging
1 parent 17f38eb commit 40a86c8

File tree

2 files changed

+28
-24
lines changed

2 files changed

+28
-24
lines changed

.github/workflows/publish_packages.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -70,25 +70,25 @@ jobs:
7070
- name: Show docs file structure
7171
run: tree ./sdk-reference
7272

73-
- name: Release new versions
74-
uses: changesets/action@v1
75-
with:
76-
publish: pnpm run publish
77-
createGithubReleases: true
78-
env:
79-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
80-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
81-
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
82-
83-
- name: Update lock file
84-
run: pnpm i --no-link --no-frozen-lockfile
85-
86-
- name: Commit new versions
87-
run: |
88-
git config user.name "github-actions[bot]"
89-
git config user.email "github-actions[bot]@users.noreply.github.com"
90-
git add ./sdk-reference
91-
git commit -am "[skip ci] Release new versions" || exit 0
92-
git push
93-
env:
94-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
73+
# - name: Release new versions
74+
# uses: changesets/action@v1
75+
# with:
76+
# publish: pnpm run publish
77+
# createGithubReleases: true
78+
# env:
79+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
80+
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
81+
# PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
82+
#
83+
# - name: Update lock file
84+
# run: pnpm i --no-link --no-frozen-lockfile
85+
#
86+
# - name: Commit new versions
87+
# run: |
88+
# git config user.name "github-actions[bot]"
89+
# git config user.email "github-actions[bot]@users.noreply.github.com"
90+
# git add ./sdk-reference
91+
# git commit -am "[skip ci] Release new versions" || exit 0
92+
# git push
93+
# env:
94+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
name: Release MCP Packages
22

3+
#on:
4+
# push:
5+
# branches:
6+
# - main
7+
38
on:
49
push:
5-
branches:
6-
- main
10+
pull_request:
711

812
concurrency: ${{ github.workflow }}-${{ github.ref }}
913

0 commit comments

Comments
 (0)