Skip to content

Commit

Permalink
chore: optimize
Browse files Browse the repository at this point in the history
  • Loading branch information
guoxianzhe committed May 9, 2024
1 parent 53bd304 commit 1af394c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ jobs:

- name: Build SDK
run: |
if [[ "${{ inputs.debug }}" == "true" ]]; then
if ("${{ inputs.debug }}" -eq "true") {
yarn totalBuild --debug=true --no_symbol=false
else
} else {
yarn totalBuild
fi
}
yarn zipBuild
yarn link
Expand Down

0 comments on commit 1af394c

Please sign in to comment.