Skip to content

Commit

Permalink
Added missings
Browse files Browse the repository at this point in the history
  • Loading branch information
barshaul committed Jun 27, 2024
1 parent e62d334 commit 475adf8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/install-valkey/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,14 @@ runs:
shell: bash
run: |
cd ~/valkey
sudo make install
if command -v sudo &> /dev/null
then
echo "sudo command exists"
sudo make install
else
echo "sudo command does not exist"
make install
fi
echo 'export PATH=/usr/local/bin:$PATH' >>~/.bash_profile
- name: Check if the current version is a Valkey release
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@ jobs:
arch: x64
target: x86_64-unknown-linux-musl
github-token: ${{ secrets.GITHUB_TOKEN }}
engine-version: "7.2.5"

- name: Test compatibility
shell: bash
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/npm-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ jobs:
npm_scope: ${{ vars.NPM_SCOPE }}
publish: "true"
github-token: ${{ secrets.GITHUB_TOKEN }}
engine-version: "7.2.5"

- name: Check if RC and set a distribution tag for the package
shell: bash
Expand Down Expand Up @@ -228,6 +229,7 @@ jobs:
os: ubuntu
target: "x86_64-unknown-linux-gnu"
github-token: ${{ secrets.GITHUB_TOKEN }}
engine-version: "7.2.5"

- name: Check if RC and set a distribution tag for the package
shell: bash
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pypi-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ jobs:
target: ${{ matrix.build.TARGET }}
publish: "true"
github-token: ${{ secrets.GITHUB_TOKEN }}
engine-version: "7.2.5"

- name: Include protobuf files in the package
working-directory: ./python
Expand Down

0 comments on commit 475adf8

Please sign in to comment.