From c1df61c6c837c08d29ba602603682a4d16056139 Mon Sep 17 00:00:00 2001 From: Sergio Rua Date: Mon, 11 Nov 2024 19:47:48 +0000 Subject: [PATCH] bump cqlsh version --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ecd7003..1a4fd62 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -78,7 +78,7 @@ jobs: - name: Download CQLSH prebuilt binaries from axonops-workbench-cqlsh run: | mkdir -p main/bin - for binary in cqlsh-410 cqlsh-407 keys_generator; do + for binary in cqlsh keys_generator; do curl -fL ${CQLSH_GITHUB_URL}/${CQLSH_BUILD_VERSION}/${binary}-$(uname -s)-$(uname -m).tar | tar xf - -C main/bin mv main/bin/${binary}-$(uname -s)-$(uname -m) main/bin/${binary} mv main/bin/${binary}/${binary}-$(uname -s)-$(uname -m) main/bin/${binary}/${binary} @@ -86,7 +86,7 @@ jobs: sed -i.bak "s/%CQLSH_VERSION%/$CQLSH_BUILD_VERSION/g" renderer/views/index.html rm -f renderer/views/index.html.bak env: - CQLSH_BUILD_VERSION: "0.13.2" + CQLSH_BUILD_VERSION: "0.14.0" CQLSH_GITHUB_URL: "${{ secrets.CQLSH_GITHUB_URL || 'https://github.com/axonops/axonops-workbench-cqlsh/releases/download' }}" - name: Setup Python v3.12