From 3f7aae28fbc152aea0143bda36dfbfeedcae88e3 Mon Sep 17 00:00:00 2001 From: Yousaf Nabi Date: Tue, 23 Jan 2024 16:06:45 +0000 Subject: [PATCH] chore(ci): remove dupe cmd now in new script --- script/release-workflow/git-commit.sh | 0 script/release-workflow/git-push.sh | 4 ---- 2 files changed, 4 deletions(-) mode change 100644 => 100755 script/release-workflow/git-commit.sh diff --git a/script/release-workflow/git-commit.sh b/script/release-workflow/git-commit.sh old mode 100644 new mode 100755 diff --git a/script/release-workflow/git-push.sh b/script/release-workflow/git-push.sh index 5c56892..96b5c05 100755 --- a/script/release-workflow/git-push.sh +++ b/script/release-workflow/git-push.sh @@ -2,10 +2,6 @@ set -euo >/dev/null -if [[ $(git status --porcelain) ]]; then - git add Gemfile.lock VERSION lib/pact/cli/version.rb - git commit -m "chore(release): version ${TAG}" -fi git tag -a "${TAG}" -m "chore(release): version ${TAG}" git push origin ${TAG} git push origin master