From 37757c568b5b60f4b024ae1c60ff33b55e85bc07 Mon Sep 17 00:00:00 2001 From: scarf Date: Mon, 13 Nov 2023 12:12:28 +0900 Subject: [PATCH] ci: try to fix if condition --- .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 5fd73b1b3586..38164e2862c5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: release: needs: commits - if: fromJSON(needs.commits.outputs.count) > 0 + if: needs.commits.outputs.count > 0 name: Create Release runs-on: ubuntu-22.04 outputs: