From 49095918ae32f6871cb21adb0586a4d675ba2e60 Mon Sep 17 00:00:00 2001 From: Ranjna Ganesh Ram Date: Thu, 9 Jul 2026 13:23:06 +0530 Subject: [PATCH] ci(wasm-privacy-coin): restore JDK 17 setup step in publish workflow Used by mvn deploy:deploy-file in .releaserc.json to deploy the JAR to GitHub Packages during semantic-release. Ticket: CSHLD-1161 --- .github/workflows/publish.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 68863384485..6a7ae5eb1a1 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -82,6 +82,12 @@ jobs: git config user.name "github-actions[bot]" git config user.email "github-actions[bot]@users.noreply.github.com" + - name: Setup JDK 17 (for wasm-privacy-coin Maven deploy) + uses: actions/setup-java@v4 + with: + distribution: corretto + java-version: "17" + - name: Install dependencies run: npm ci --workspaces --include-workspace-root