-
-
Notifications
You must be signed in to change notification settings - Fork 194
chore(release): Version skill installer URLs #199
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
e903c96
68b2725
b92e4b8
2198d98
b280c14
94738fb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -318,6 +318,14 @@ if [[ "$SKIP_VERSION_UPDATE" == "false" ]]; then | |
| README_SKILL_INSTALL_URL_REGEX='https://raw.githubusercontent.com/cameroncooke/XcodeBuildMCP/[^/]+/scripts/install-skill.sh' | ||
| run sed_inplace "s#${README_SKILL_INSTALL_URL_REGEX}#https://raw.githubusercontent.com/cameroncooke/XcodeBuildMCP/v${VERSION}/scripts/install-skill.sh#g" README.md | ||
|
|
||
| # Update skill installer URL in docs/SKILLS.md | ||
| if [[ -f docs/SKILLS.md ]]; then | ||
| echo "📝 Updating skill installer URL in docs/SKILLS.md..." | ||
| run sed_inplace "s#${README_SKILL_INSTALL_URL_REGEX}#https://raw.githubusercontent.com/cameroncooke/XcodeBuildMCP/v${VERSION}/scripts/install-skill.sh#g" docs/SKILLS.md | ||
| else | ||
| echo "⚠️ docs/SKILLS.md not found; skipping update" | ||
| fi | ||
|
|
||
cursor[bot] marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| # server.json update | ||
| echo "" | ||
| if [[ -f server.json ]]; then | ||
|
|
@@ -331,9 +339,9 @@ if [[ "$SKIP_VERSION_UPDATE" == "false" ]]; then | |
| echo "" | ||
| echo "📦 Committing version changes..." | ||
| if [[ -f server.json ]]; then | ||
| run git add package.json package-lock.json README.md server.json | ||
| run git add package.json package-lock.json README.md docs/SKILLS.md server.json | ||
| else | ||
| run git add package.json package-lock.json README.md | ||
| run git add package.json package-lock.json README.md docs/SKILLS.md | ||
cameroncooke marked this conversation as resolved.
Show resolved
Hide resolved
Comment on lines
+342
to
+344
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: The release script will crash if Suggested FixMake the Prompt for AI AgentDid we get this right? 👍 / 👎 to inform future reviews. |
||
| fi | ||
| run git commit -m "Release v$VERSION" | ||
| else | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.