Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/gradle-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,16 @@ jobs:
java-version: '21'
distribution: 'temurin'

- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: '22' # increase only after https://github.com/nodejs/node/issues/56645 will be fixed

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v6

Comment thread
devcrocod marked this conversation as resolved.
- name: Build
run: ./gradlew build --rerun-tasks --max-workers 2 --continue
- name: Check
run: ./gradlew check --no-configuration-cache
Comment on lines +35 to +36
Copy link

Copilot AI Apr 13, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR title/description indicate this change is only about adding Node setup, but this workflow also changes the Gradle step from build to check and drops flags like --continue/--rerun-tasks/--max-workers. Please either update the PR description to reflect this behavioral change, or keep the step as build if the intent is to preserve the previous release validation semantics.

Copilot uses AI. Check for mistakes.

- name: Publish to Maven Central Portal
id: publish
Expand Down
Loading