This is an automated email from the ASF dual-hosted git repository. fanningpj pushed a commit to branch pjfanning-patch-1 in repository https://gitbox.apache.org/repos/asf/pekko.git
commit 9d1d01942fcb201b2f6efb80cb60e1dc91e552ab Author: PJ Fanning <[email protected]> AuthorDate: Fri May 17 10:30:05 2024 +0100 fix startsWith condition in nightly-builds.yml --- .github/workflows/nightly-builds.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nightly-builds.yml b/.github/workflows/nightly-builds.yml index 0ea2a3a705..d954712943 100644 --- a/.github/workflows/nightly-builds.yml +++ b/.github/workflows/nightly-builds.yml @@ -178,7 +178,7 @@ jobs: sudo apt-get install graphviz # genjavadoc does not support Scala 3.x sbt \ - -Dpekko.genjavadoc.enabled=${{ startsWith(matrix.scalaVersion, '3')}} \ + -Dpekko.genjavadoc.enabled=${{ !startsWith(matrix.scalaVersion, '3') }} \ "++ ${{ matrix.scalaVersion }} doc" - name: Publish --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
