From abbc5444da4dc6b2bddd9139cff9ac53a1362e54 Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Wed, 8 Oct 2025 21:46:54 +0000 Subject: [PATCH 1/2] Run gradle publish step in CI --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 08cd9c4052b..6bed1f18490 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,8 +29,8 @@ jobs: with: cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }} - - name: clean and build - run: ./gradlew clean build -Plog-tests + - name: Build and Publish + run: ./gradlew clean build publish -Plog-tests protocol-tests: runs-on: ${{ matrix.os }} From 306988dbed5174b3c5c8d91e18234a102b422d04 Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Wed, 8 Oct 2025 21:52:43 +0000 Subject: [PATCH 2/2] fix: move publish on different line --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6bed1f18490..13c92d4378f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,8 +29,11 @@ jobs: with: cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }} - - name: Build and Publish - run: ./gradlew clean build publish -Plog-tests + - name: clean and build + run: ./gradlew clean build -Plog-tests + + - name: publish + run: ./gradlew publish protocol-tests: runs-on: ${{ matrix.os }}