From cab4474506c1623c91428dd4d203c3f5bc7fef14 Mon Sep 17 00:00:00 2001 From: Marcus Notheis Date: Wed, 3 Jun 2026 09:01:07 +0200 Subject: [PATCH] ci(release): use vars instead of secrets for git user --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d9c0386dbae..93c246c044d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -117,8 +117,8 @@ jobs: - name: Setup Git User if: ${{ github.event.inputs.publish_only != 'true' }} run: | - git config user.email ${{ secrets.BOT_GIT_EMAIL }} - git config user.name ${{ secrets.BOT_GIT_USERNAME }} + git config user.email ${{ vars.BOT_GIT_EMAIL }} + git config user.name ${{ vars.BOT_GIT_USERNAME }} - name: version - Release if: ${{ github.event.inputs.publish_only != 'true' && github.event.inputs.snapshot == 'false' }}