Skip to content

Commit

Permalink
remove prev check
Browse files Browse the repository at this point in the history
  • Loading branch information
barshaul committed Jun 27, 2024
1 parent 28fe427 commit 3f80f31
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions .github/workflows/install-valkey/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,18 +51,6 @@ runs:
sudo make install
echo 'export PATH=/usr/local/bin:$PATH' >>~/.bash_profile
- name: Check if it's a Valkey released version
shell: bash
id: version_calc
run: |
VALKEY_MIN_VER_CLEAN=`echo "7.2.5" | tr -dc '0-9'`
CURR_VER_CLEAN=`echo ${{ inputs.engine-version }} | tr -dc '0-9'`
if [[ $CURR_VER_CLEAN -lt 100 ]]; then CURR_VER_CLEAN=`echo $(($CURR_VER_CLEAN * 10))`; fi
if [[ $CURR_VER_CLEAN -ge $VALKEY_MIN_VER_CLEAN ]]; then
VALKEY_RELEASE=true
else
VALKEY_RELEASE=false
- name: Check if the current version is a Valkey release
id: is_valkey_release
uses: ./.github/actions/compare-versions
Expand Down

0 comments on commit 3f80f31

Please sign in to comment.