From 9be62f3d1125a927c59b2b001696eda11aeb7535 Mon Sep 17 00:00:00 2001 From: Blayne Chard Date: Thu, 20 Feb 2025 12:01:19 +1300 Subject: [PATCH] build: fix text escaping for multiline with "`" commit messages --- .github/workflows/containers.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/containers.yml b/.github/workflows/containers.yml index 4e551d55d..aa515c002 100644 --- a/.github/workflows/containers.yml +++ b/.github/workflows/containers.yml @@ -66,7 +66,7 @@ jobs: tags.push('latest'); // If on a release commit add `v7`, `v7.1` and `v7.1` - if (`${{ toJson(github.event.head_commit.message) }}`.startsWith('release:')) { + if (${{ toJson(github.event.head_commit.message) }}.startsWith('release:')) { tags.push('${{ steps.version.outputs.version_major }}'); tags.push('${{ steps.version.outputs.version_major_minor }}'); }