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 a91f314 commit 9020b57Copy full SHA for 9020b57
scripts/after_success.sh
@@ -12,10 +12,7 @@ fi
12
COMMIT_MESSAGE=$(git show -s --format=%B $TRAVIS_COMMIT | tr -d '\n')
13
PACKAGE_JSON_VERSION=$(node -e "console.log(require('./package.json').version)")
14
15
-echo ${COMMIT_MESSAGE}
16
-echo ${PACKAGE_JSON_VERSION}
17
-
18
-if [[ ${TRAVIS_TAG} == v${PACKAGE_JSON_VERSION} ]]; then
+if [[ ${COMMIT_MESSAGE} == v${PACKAGE_JSON_VERSION} ]]; then
19
echo "running prebuild"
20
nvm use --delete-prefix ${NODE_VERSION}
21
node ./node_modules/prebuild/bin.js --all --strip -u ${GITHUB_TOKEN}
0 commit comments