Fix x86_64 macOS CI invalid options

This commit is contained in:
Jerry Ma 2025-01-25 09:48:15 +08:00 committed by GitHub
parent 2ca5ad075b
commit eecebbcd4d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -89,9 +89,9 @@ jobs:
- if: inputs.debug == true
run: echo "SPC_BUILD_DEBUG=--debug" >> $GITHUB_ENV
- if: inputs.prefer-pre-built == true
run: echo "SPC_PRE_BUILT=--prefer-pre-built" >> $env:GITHUB_ENV
run: echo "SPC_PRE_BUILT=--prefer-pre-built" >> $GITHUB_ENV
- if: inputs.no-strip == true
run: echo "SPC_NO_STRIP=--no-strip" >> $env:GITHUB_ENV
run: echo "SPC_NO_STRIP=--no-strip" >> $GITHUB_ENV
# With target select: cli, micro or both
- if: ${{ inputs.build-cli == true }}