From 27d8c3010c3d6b5b53757fbe0572bea4efd3eb57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EF=BC=AD=E2=99=A2=EF=BC=AE=EF=BC=B4=CE=9B=EF=BC=B3?= =?UTF-8?q?=EF=BC=A9=EF=BC=AD?= Date: Sat, 17 Aug 2024 16:28:46 +0600 Subject: [PATCH] fix: bump version and generate changelog --- .github/workflows/create-release.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 5b749a9..38b4645 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -22,6 +22,11 @@ jobs: with: node-version: '20' + - name: Configure Git + run: | + git config --global user.email "actions@github.com" + git config --global user.name "GitHub Actions" + - name: Install dependencies run: yarn install @@ -42,8 +47,6 @@ jobs: - name: Commit changes run: | - git config --global user.email "actions@github.com" - git config --global user.name "GitHub Actions" git add -A git commit -m "chore(release): release ${GITHUB_REF##*/} [skip ci]"