Skip to content

Commit

Permalink
Fix Publish to Maven Central step condition
Browse files Browse the repository at this point in the history
 This is actually a boolean, not a string
  • Loading branch information
jpelgrom committed Oct 10, 2024
1 parent 4d4520e commit 580d2fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit 580d2fb

Please sign in to comment.