From a7531acc7ac8ba720e2f8d1d317ac20cc31b5a49 Mon Sep 17 00:00:00 2001 From: David Sanders Date: Wed, 15 Nov 2023 14:53:12 -0800 Subject: [PATCH] ci: another release workflow fix (#120) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f8e4705..a6ceb11 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,9 +72,9 @@ jobs: run: | set -eo pipefail dist/rcedit-x64.exe dist/rcedit-x86.exe --set-product-version $VERSION --set-file-version $VERSION - dist/rcedit-x86.exe -h | grep -q Rcedit v$VERSION + dist/rcedit-x86.exe -h | grep -q "Rcedit v$VERSION" dist/rcedit-x86.exe dist/rcedit-x64.exe --set-product-version $VERSION --set-file-version $VERSION - dist/rcedit-x64.exe -h | grep -q Rcedit v$VERSION + dist/rcedit-x64.exe -h | grep -q "Rcedit v$VERSION" env: VERSION: ${{ steps.get-next-version.outputs.new-release-version }} - name: Run semantic release