From a860056c419e0e1ed7f2823aa53d12b27e3a303f Mon Sep 17 00:00:00 2001 From: nilsnolde Date: Fri, 8 Mar 2024 22:32:52 +0100 Subject: [PATCH] sed in-file substitution --- .github/workflows/check_release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check_release.yml b/.github/workflows/check_release.yml index e8129f6..e01717e 100644 --- a/.github/workflows/check_release.yml +++ b/.github/workflows/check_release.yml @@ -39,7 +39,7 @@ jobs: git checkout -b $new_branch # update the README - cat README.md | sed -e "s:${latest_this_tag}:${latest_vroom_tag}:g" > README.md + sed -i "s/v1.14.0/v1.15.0/g" README.md # commit and push git commit -am "release ${latest_vroom_tag}"