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 ef9a224 commit b924033Copy full SHA for b924033
.github/workflows/release.yml
@@ -69,8 +69,8 @@ jobs:
69
rustup target add ${{matrix.target}}
70
export MATRIX_TARGET=${{matrix.target}}
71
echo $MATRIX_TARGET
72
- echo $BIN_NAME
73
- if [[ $BIN_NAME == "ahnlich-ai" ]] && [[ $MATRIX_TARGET == *darwin ]]; then
+ echo ${{ needs.prebuild_preparation.outputs.bin_name }}
+ if [[ ${{ needs.prebuild_preparation.outputs.bin_name }} == "ahnlich-ai" ]] && [[ $MATRIX_TARGET == *darwin ]]; then
74
echo "running with coreml.."
75
cargo build --features coreml --release --target ${{matrix.target}} --bin ${{ needs.prebuild_preparation.outputs.bin_name }}
76
else
0 commit comments