From 9264208091e4533761cd0d46e306e148dd00e70c Mon Sep 17 00:00:00 2001 From: David Dal Busco Date: Sun, 12 Apr 2026 21:26:46 +0200 Subject: [PATCH] test: replace juno --version command --- .github/workflows/test-cli.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-cli.yaml b/.github/workflows/test-cli.yaml index ef0e7af..8c50d80 100644 --- a/.github/workflows/test-cli.yaml +++ b/.github/workflows/test-cli.yaml @@ -32,7 +32,7 @@ jobs: - name: Test Juno CLI version run: | - OUTPUT=$(docker run --rm -e JUNO_TOKEN="${{ secrets.JUNO_TOKEN }}" juno-action:test-${{ matrix.dockerfile == 'Dockerfile.full' && 'full' || 'slim' }} version --cli) + OUTPUT=$(docker run --rm -e JUNO_TOKEN="${{ secrets.JUNO_TOKEN }}" juno-action:test-${{ matrix.dockerfile == 'Dockerfile.full' && 'full' || 'slim' }} --version) echo "$OUTPUT" if [[ "$OUTPUT" != *"v0.14.6"* ]]; then echo "❌ Expected version v0.14.6 not found in output"