From 1e7facf3a24f528479282c4cca7c484cce80cc85 Mon Sep 17 00:00:00 2001 From: JJGadgets Date: Mon, 20 May 2024 06:44:55 +0800 Subject: [PATCH] fix(actions/flux-localhost-build): fix email --- .github/workflows/flux-localhost-build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/flux-localhost-build.yaml b/.github/workflows/flux-localhost-build.yaml index be6a118d..97d1bf15 100644 --- a/.github/workflows/flux-localhost-build.yaml +++ b/.github/workflows/flux-localhost-build.yaml @@ -61,7 +61,7 @@ jobs: run: | git config push.autoSetupRemote true git config user.name "${{ secrets.BOT_USERNAME }}[bot]" - git config user.email "${{ secrets.BOT_USERNAME }} <${{ secrets.BOT_API_ID }}+${{ secrets.BOT_USERNAME }}[bot]@users.noreply.github.com>" # get $BOT_API_ID from `curl -s 'https://api.github.com/users/$(BOT_USERNAME)%5Bbot%5D' | yq .id` + git config user.email "${{ secrets.BOT_API_ID }}+${{ secrets.BOT_USERNAME }}[bot]@users.noreply.github.com" # get $BOT_API_ID from `curl -s 'https://api.github.com/users/$(BOT_USERNAME)%5Bbot%5D' | yq .id` git checkout -b ${{ env.BRANCH }} main #git checkout ${{ env.BRANCH }} || git checkout -b ${{ env.BRANCH }} main