We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39e2f0a commit 3e3788aCopy full SHA for 3e3788a
1 file changed
.circleci/config.yml
@@ -37,6 +37,9 @@ aliases:
37
if [[ "${ELECTRON_VERSION}" ]]; then
38
GYP_ARGS="--runtime=electron --target=${ELECTRON_VERSION} --dist-url=https://electronjs.org/headers"
39
fi
40
+ if [[ "${BUILD_ARM64}" == "true" ]]; then
41
+ GYP_ARGS="${GYP_ARGS} --target_arch=arm64"
42
+ fi
43
COMMIT_MESSAGE=`git log --format=%s -n 1 $CIRCLE_SHA1`
44
if [[ ${COMMIT_MESSAGE} =~ "[publish binary]" ]] && [[ "$PUBLISH" == "true" ]]; then
45
./node_modules/.bin/node-pre-gyp publish $GYP_ARGS
0 commit comments