From 334ac175ad9667b39f5ed9ccb26ec648443bdc82 Mon Sep 17 00:00:00 2001 From: Alc-Alc <45509143+Alc-Alc@users.noreply.github.com> Date: Fri, 21 Jun 2024 19:29:06 +0530 Subject: [PATCH] fix: missing quote (#38) Co-authored-by: Alc-Alc --- .github/workflows/update-toast.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-toast.yml b/.github/workflows/update-toast.yml index 7f3b0a8..67d708c 100644 --- a/.github/workflows/update-toast.yml +++ b/.github/workflows/update-toast.yml @@ -30,7 +30,7 @@ jobs: env: CURRENT_VERSION: 2.6 run: | - sed -Ei "s/(\"title\": \"Litestar )[[:digit:].]*( has just been released!)\"/\1${{ steps.latest_release.outputs.version }}\2/" page/conf.py + sed -Ei "s/(\"title\": \"Litestar )[[:digit:].]*( has just been released!\")\"/\1${{ steps.latest_release.outputs.version }}\2/" page/conf.py sed -Ei "s|(https://docs.litestar.dev/latest/release-notes/changelog.html#)[[:digit:].]*|\1${{ steps.latest_release.outputs.version }}|" page/conf.py - name: Update workflow file