Skip to content

Commit

Permalink
fix mode check
Browse files Browse the repository at this point in the history
  • Loading branch information
whhe committed Jun 24, 2024
1 parent 1d24cf5 commit 55b12bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/java-test-oceanbase-ce.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
- name: Set server IP
id: set_server_ip
run: |
if [ ${{ inputs.mode == 'slim' }} ]; then
if [ "${{ inputs.mode }}" == "slim" ]; then
echo "Use '127.0.0.1' as server_ip on slim mode."
echo "server_ip=127.0.0.1" >> $GITHUB_OUTPUT
else
Expand Down

0 comments on commit 55b12bc

Please sign in to comment.