Skip to content

Commit

Permalink
chore(ci): use new dsn for create database
Browse files Browse the repository at this point in the history
  • Loading branch information
zhang2014 committed Dec 4, 2024
1 parent a365b65 commit e484f69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/setup_bendsql/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ runs:
if: runner.os == 'Linux'
shell: bash
run: |
if bendsql --version; then
if command -v bendsql >/dev/null 2>&1; then
exit 0
fi
case $RUNNER_PROVIDER in
Expand All @@ -29,7 +29,7 @@ runs:
if: runner.os == 'macOS'
shell: bash
run: |
if bendsql --version; then
if command -v bendsql >/dev/null 2>&1; then
exit 0
fi
brew install databendcloud/homebrew-tap/bendsql
Expand Down

0 comments on commit e484f69

Please sign in to comment.