From 303246e721de6fd54fe94be7ae3e4aa4fefff213 Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 9 Dec 2023 12:14:46 +0500 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4596a45..db0831f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -257,13 +257,13 @@ jobs: run: | $filePath = ".\build\bin\Release\rwkv.dll" if (Test-Path $filePath) { - echo "exit at path: $filePath" + echo "Exists at path $filePath" } elseif (Test-Path ".\build\bin\rwkv.dll") { $filePath = ".\build\bin\rwkv.dll" - echo "exists at path: $filePath" + echo "Exists at path $filePath" } else { ls .\build\bin - throw "can't find rwkv.dll" + throw "Can't find rwkv.dll" } 7z a rwkv-${{ env.BRANCH_NAME }}-${{ steps.commit.outputs.short }}-bin-win-${{ matrix.build }}-x64.zip $filePath