From de2f3622072c11393d29b056e750d2762b30969c Mon Sep 17 00:00:00 2001 From: a-ghorbani Date: Tue, 26 Nov 2024 21:55:41 +0100 Subject: [PATCH] fix(ci): add title to commit in push version changes --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8e77e8c..9b63bf0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -69,7 +69,7 @@ jobs: git config user.name "GitHub Actions" git config user.email "actions@github.com" git add .version package.json android/app/build.gradle ios/PocketPal.xcodeproj/project.pbxproj - git commit -m "Bump version to $(cat .version)" + git commit -m "chore(release): bump version to $(cat .version)" git push git tag "v$(cat .version)" git push origin "v$(cat .version)"