Skip to content

Commit 60b7474

Browse files
authored
Update Gradle publish workflow: switch to published event, use `mac… (#259)
<!-- Provide a brief summary of your changes --> ## Motivation and Context Align release workflow with the normal build workflow ## Changes Update Gradle publish workflow: switch to `published` event, use `mac…os-latest-xlarge`, and configure `JAVA_OPTS`. ## Types of changes <!-- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> - [x] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) - [ ] Documentation update - [x] CI update ## Checklist <!-- Go over all the following points, and put an `x` in all the boxes that apply. --> - [ ] I have read the [MCP Documentation](https://modelcontextprotocol.io) - [ ] My code follows the repository's style guidelines - [ ] New and existing tests pass locally - [ ] I have added appropriate error handling - [ ] I have added or updated documentation as needed ## Additional context <!-- Add any other context, implementation notes, or design decisions -->
1 parent 1d6cb24 commit 60b7474

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/gradle-publish.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@ on:
1313

1414
jobs:
1515
build:
16-
runs-on: macos-latest
16+
runs-on: macos-latest-xlarge
1717
environment: release
18+
env:
19+
JAVA_OPTS: "-Xmx8g -Dfile.encoding=UTF-8 -Djava.awt.headless=true -Dkotlin.daemon.jvm.options=-Xmx6g"
1820

1921
permissions:
2022
contents: write

0 commit comments

Comments
 (0)