From 2efbdad4f0167f3756890a6bcb78d4918904dfca Mon Sep 17 00:00:00 2001 From: Alex Clarke Date: Mon, 25 Nov 2024 18:04:18 -0700 Subject: [PATCH] ci: Changed ordering of git user commit [skip ci] --- .github/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index eb8d407..dd5873a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,11 +32,6 @@ jobs: chmod 600 ~/.ssh/id_ed25519 ssh-keyscan -H github.com >> ~/.ssh/known_hosts - - name: Configure Git user - run: | - git config user.name "github-actions[bot]" - git config user.email "github-actions[bot]@users.noreply.github.com" - - name: Checkout repository uses: actions/checkout@v3 with: @@ -53,6 +48,11 @@ jobs: python -m pip install --upgrade pip pip install commitizen + - name: Configure Git user + run: | + git config user.name "github-actions[bot]" + git config user.email "github-actions[bot]@users.noreply.github.com" + - name: Bump version with Commitizen run: | cz bump --yes --increment ${{ github.event.inputs.bump_type }}