From 6c075ab02ddd1dc7f67879a7da75390ef0b661c1 Mon Sep 17 00:00:00 2001 From: Edouard Demotes Date: Sun, 19 Nov 2023 23:13:10 -0500 Subject: [PATCH] ci: fix config git with bot info (#4) * ci: configure git with bot info * ci: fix config git with bot info --- .github/workflows/release-and-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-and-publish.yml b/.github/workflows/release-and-publish.yml index bae84cc2..c1f8f098 100644 --- a/.github/workflows/release-and-publish.yml +++ b/.github/workflows/release-and-publish.yml @@ -14,8 +14,8 @@ jobs: token: ${{ secrets.GH_TOKEN }} - name: Configure Git run: | - git config --global user.name "${{ secrets.CI_BOT_NAME }}" - git config --global user.email "${{ secrets.CI_BOT_EMAIL }}" + git config --global user.name "$CI_BOT_NAME" + git config --global user.email "$CI_BOT_EMAIL" - name: Use Node.js 18.x uses: actions/setup-node@v2 with: