Skip to content

Commit

Permalink
build: fix text escaping for multiline with "`" commit messages
Browse files Browse the repository at this point in the history
  • Loading branch information
blacha committed Feb 19, 2025
1 parent 724d580 commit 9be62f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}');
}
Expand Down

0 comments on commit 9be62f3

Please sign in to comment.