From 2b68c933b66dd1c6f44632a863fc422789ccb35a Mon Sep 17 00:00:00 2001 From: "matej.vukosav" Date: Fri, 20 Dec 2024 02:22:12 +1100 Subject: [PATCH] chore: fix which check in cli --- .github/workflows/cross-platform-install-test.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cross-platform-install-test.yml b/.github/workflows/cross-platform-install-test.yml index 33d2955f8..bbc088f0b 100644 --- a/.github/workflows/cross-platform-install-test.yml +++ b/.github/workflows/cross-platform-install-test.yml @@ -5,8 +5,7 @@ on: branches: - master - pull_request_target: - types: [opened, reopened] + pull_request: branches: - master @@ -39,9 +38,9 @@ jobs: curl -s https://raw.githubusercontent.com/calimero-network/core/${{ env.BRANCH_NAME }}/scripts/install-merod.sh | bash # Validate the binary installation - - name: Validate installation + - name: Validate merod installation run: | - which meroctl + which merod merod --version # Run the meroctl script @@ -50,7 +49,7 @@ jobs: curl -s https://raw.githubusercontent.com/calimero-network/core/${{ env.BRANCH_NAME }}/scripts/install-meroctl.sh | bash # Validate the binary installation - - name: Validate installation + - name: Validate meroctl installation run: | which meroctl meroctl --version