We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8bacce commit a6825b4Copy full SHA for a6825b4
.github/workflows/release.yml
@@ -67,7 +67,9 @@ jobs:
67
run: |
68
rm types/build.rs
69
rustup target add ${{matrix.target}}
70
- if [ $BIN_NAME == "ahnlich-ai" ] && [ "${{matrix.target}}" == *darwin ]; then
+ export MATRIX_TARGET=${{matrix.target}}
71
+ echo $MATRIX_TARGET
72
+ if [[ $BIN_NAME == "ahnlich-ai" ]] && [[ $MATRIX_TARGET == *darwin ]]; then
73
echo "running with coreml.."
74
cargo build --features coreml --release --target ${{matrix.target}} --bin ${{ needs.prebuild_preparation.outputs.bin_name }}
75
else
0 commit comments