From cbcfc8864c57c3d4f8c666b11474252e07251356 Mon Sep 17 00:00:00 2001 From: Bekir Oguz Date: Wed, 18 Sep 2024 17:17:15 +0200 Subject: [PATCH] Fix release pipeline by adding quotes to the sbt release command (#1757) * Create sonatype release pipeline file (#5) * Create sonatype release pipeline file * fix repo name check condition * configure branch name input * Update branch name input description * use standard github actions GITHUB_REF for the source branch name extraction * remove github username and token * commented out PGP_PASSPHRASE and PGP_SECRET variables in publish.yml * Refactor publish step in Publish.scala to use "+publish" instead of "+publishSigned" * use proper sbt release command using quotes --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f0c1cd3a5..ac1ffac56 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -34,7 +34,7 @@ jobs: git config --global user.name "baker release pipeline" git remote set-url origin "https://github.com/ing-bank/baker" - sbt release cross with-defaults + sbt "release cross with-defaults" env: # PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }} # PGP_SECRET: ${{ secrets.PGP_SECRET }}