summaryrefslogtreecommitdiff
path: root/platform/node/scripts/after_success.sh
blob: a050dbce079b526f4774bde55c14f7cfef3e46f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

set -e
set -o pipefail

if [[ "${PUBLISH:-}" == "true" ]]; then
    if [[ "${BUILDTYPE}" == "Release" ]]; then
        ./node_modules/.bin/node-pre-gyp package publish info
    else
        ./node_modules/.bin/node-pre-gyp package publish info --debug
    fi
fi