From a3f150e650443683ffa704921d2614a60dd1dbfd Mon Sep 17 00:00:00 2001 From: Anastasiia Smirnova Date: Sat, 4 Jun 2022 16:34:32 +0200 Subject: [PATCH] Fix git commit params --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 19fa93230..e4c215b06 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -51,7 +51,7 @@ jobs: ./mvnw --batch-mode --no-transfer-progress versions:set -DnewVersion=${{ github.event.inputs.version }} versions:commit git config user.name "jenkins" git config user.email "jenkins@playtika.com" - git commit -m -a "Release ${{ github.event.inputs.version }}" + git commit -m "Release ${{ github.event.inputs.version }}" -a git push - name: Publish to the Maven Central Repository