From 307fa51be47acb78c82e6daa83e6a087698c3030 Mon Sep 17 00:00:00 2001 From: Edouard Demotes Date: Sun, 19 Nov 2023 23:03:27 -0500 Subject: [PATCH 1/3] ci: configure git with bot info --- .github/workflows/release-and-publish.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release-and-publish.yml b/.github/workflows/release-and-publish.yml index a8da92cf..bae84cc2 100644 --- a/.github/workflows/release-and-publish.yml +++ b/.github/workflows/release-and-publish.yml @@ -12,6 +12,10 @@ jobs: - uses: actions/checkout@v2 with: 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 }}" - name: Use Node.js 18.x uses: actions/setup-node@v2 with: From fb232ec2ba69280091d1d5e114e65f631c5b52db Mon Sep 17 00:00:00 2001 From: Edouard Demotes Date: Sun, 19 Nov 2023 23:10:01 -0500 Subject: [PATCH 2/3] 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: From 5fffe6d1dfb62013c3966b80c8842066ee991cb0 Mon Sep 17 00:00:00 2001 From: Edouard Demotes Date: Sun, 19 Nov 2023 23:18:32 -0500 Subject: [PATCH 3/3] 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 c1f8f098..0204b2df 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 "$CI_BOT_NAME" - git config --global user.email "$CI_BOT_EMAIL" + git config --global user.name "${{ env.CI_BOT_NAME }}" + git config --global user.email "${{ env.CI_BOT_EMAIL }}" - name: Use Node.js 18.x uses: actions/setup-node@v2 with: