From aa096502cacac991ad68f5e51c8cfddba9e86f60 Mon Sep 17 00:00:00 2001 From: Yohe-Am <56622350+Yohe-Am@users.noreply.github.com> Date: Sat, 13 Jan 2024 02:28:27 +0300 Subject: [PATCH] fix(ci): typo in release.yml (#548) Fix small typo. Surprised `act` didn't catch this, it must evaluate expressions lazily. Signed-off-by: Yohe-Am <56622350+Yohe-Am@users.noreply.github.com> --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index db15366cc5..c33830133c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -53,7 +53,7 @@ jobs: makeLatest: true bodyFile: "CHANGE.md" discussionCategory: "Announcements" - prerelease: ${{ contains(steps.latest-tag.outputs.tag 'dev') || contains(steps.latest-tag.outputs.tag 'alpha') }} + prerelease: ${{ contains(steps.latest-tag.outputs.tag, 'dev') || contains(steps.latest-tag.outputs.tag, 'alpha') }} meta-cli: needs: