From a0cbe28524ee980f97c72ad61e70186382d8b966 Mon Sep 17 00:00:00 2001 From: Matthias Kurz Date: Fri, 24 May 2024 17:03:49 +0200 Subject: [PATCH] make sbt-ci-release work "correctly" --- .github/workflows/publish.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e8129d85..d622413e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,11 +11,15 @@ jobs: name: Publish / Scala 2.13 Artifacts uses: playframework/.github/.github/workflows/publish.yml@v3 with: - cmd: CI_RELEASE=publishSigned sbt ++2.13.x ci-release + cmd: | + export CI_RELEASE=publishSigned + sbt ++2.13.x ci-release secrets: inherit publish-artifacts-scala-3: name: Publish / Scala 3 Artifacts uses: playframework/.github/.github/workflows/publish.yml@v3 with: - cmd: CI_RELEASE=publishSigned sbt -DUSE_BSL=true ++3.x ci-release + cmd: | + export CI_RELEASE=publishSigned + sbt -DUSE_BSL=true ++3.x ci-release secrets: inherit