Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
zhoucheng361 committed Mar 25, 2024
1 parent 77a1d4e commit bcea29e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ jobs:
echo "github.event_name is ${{github.event_name}}"
echo "GITHUB_REF_NAME is ${GITHUB_REF_NAME}"
if [ "${{github.event_name}}" == "schedule" ]; then
echo 'meta_matrix=["sqlite3", "redis", "tikv"]' >> $GITHUB_OUTPUT
echo 'meta_matrix=["mysql", "redis", "tikv"]' >> $GITHUB_OUTPUT
elif [ "${{github.event_name}}" == "pull_request" ]; then
echo 'meta_matrix=["sqlite3", "redis", "tikv"]' >> $GITHUB_OUTPUT
echo 'meta_matrix=["mysql", "redis", "tikv"]' >> $GITHUB_OUTPUT
elif [ "${{github.event_name}}" == "workflow_dispatch" ]; then
echo 'meta_matrix=["sqlite3", "redis", "tikv"]' >> $GITHUB_OUTPUT
echo 'meta_matrix=["mysql", "redis", "tikv"]' >> $GITHUB_OUTPUT
else
echo 'meta_matrix=["redis"]' >> $GITHUB_OUTPUT
fi
Expand Down

0 comments on commit bcea29e

Please sign in to comment.