From 8fcc50b63c68ae9d166c34d8ed68ad3992320fab Mon Sep 17 00:00:00 2001 From: Andreas Braun Date: Fri, 14 Jun 2024 16:58:57 +0200 Subject: [PATCH] Fix release workflow (#1422) * Fix input names * Set git author information JAVA-5479 --- .github/workflows/release.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cfb5002dc56..0832b079955 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,6 +9,10 @@ on: required: true type: "string" +env: + GIT_AUTHOR_EMAIL: "167856002+mongodb-dbx-release-bot[bot]@users.noreply.github.com" + GIT_AUTHOR_NAME: "mongodb-dbx-release-bot[bot]" + jobs: prepare-release: environment: release @@ -26,8 +30,8 @@ jobs: - uses: mongodb-labs/drivers-github-tools/secure-checkout@v2 with: - app-id: ${{ vars.APP_ID }} - private-key: ${{ secrets.APP_PRIVATE_KEY }} + app_id: ${{ vars.APP_ID }} + private_key: ${{ secrets.APP_PRIVATE_KEY }} - name: "Store version numbers in env variables" # The awk command to increase the version number was copied from