From f643c071f04848e4488fce18c2d829396eca768f Mon Sep 17 00:00:00 2001 From: Michael Thomas Date: Wed, 4 Sep 2024 07:07:52 +0000 Subject: [PATCH] remove ^ --- .github/workflows/update-version-number.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-version-number.yaml b/.github/workflows/update-version-number.yaml index 20fe992..92b1edc 100644 --- a/.github/workflows/update-version-number.yaml +++ b/.github/workflows/update-version-number.yaml @@ -23,7 +23,7 @@ jobs: run: | VERSION=${{ github.ref_name }} VERSION="${VERSION:1}" - sed -i -E 's/^VERSION = "[0-9]+.[0-9]+.[0-9]+"/VERSION = "'$VERSION'"/' find_posts.py + sed -i -E 's/VERSION = "[0-9]+.[0-9]+.[0-9]+"/VERSION = "'$VERSION'"/' find_posts.py git add find_posts.py git commit -m "[bot] Bump version to $VERSION" - name: Push to repository