From 580d2fbba641fe0bec432bf8c480c164561ef5ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joris=20Pelgr=C3=B6m?= Date: Thu, 10 Oct 2024 19:51:43 +0200 Subject: [PATCH] Fix Publish to Maven Central step condition This is actually a boolean, not a string --- .github/workflows/rc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rc.yml b/.github/workflows/rc.yml index 493c455..63db85e 100644 --- a/.github/workflows/rc.yml +++ b/.github/workflows/rc.yml @@ -41,7 +41,7 @@ jobs: asset_name: demo.apk - name: Publish to Maven Central - if: github.event.release.draft == 'false' + if: github.event.release.draft == false run: ./gradlew publishAndReleaseToMavenCentral --no-configuration-cache env: IMPROV_LIB_RELEASE: ${{ github.event.release.tag_name }}