From 924e910e8f7004993006e19ecf2180a71d477e54 Mon Sep 17 00:00:00 2001 From: Felix Angelov Date: Thu, 10 Aug 2023 15:46:32 -0500 Subject: [PATCH] ci(e2e): fix install check (#1086) --- .github/workflows/e2e.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 00799c83..785a3a56 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -44,7 +44,7 @@ jobs: - name: 🐦 Verify Shorebird Installation (macOS / Linux) if: runner.os != 'Windows' run: | - if [[ $(shorebird --version) =~ "Shorebird Engine • revision" ]]; then + if [[ $(shorebird --version) =~ "Engine • revision" ]]; then echo '✅ Shorebird CLI is installed!' else echo '❌ Shorebird CLI is not installed.' @@ -56,7 +56,7 @@ jobs: if: runner.os == 'Windows' run: | $shorebird_version = shorebird --version - if ($shorebird_version -match "Shorebird Engine") { + if ($shorebird_version -match "Engine") { Write-Output "✅ Shorebird CLI is installed!" } else { Write-Output "❌ Shorebird CLI is not installed."