summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--package.json2
-rw-r--r--platform/node/bitrise.yml3
2 files changed, 2 insertions, 3 deletions
diff --git a/package.json b/package.json
index 61936e2fe7..b7842da4aa 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "mapbox-gl-native",
- "version": "3.3.3",
+ "version": "3.4.0-pre.7",
"description": "Renders map tiles with Mapbox GL",
"keywords": [
"mapbox",
diff --git a/platform/node/bitrise.yml b/platform/node/bitrise.yml
index 247216dc84..e2764c12d3 100644
--- a/platform/node/bitrise.yml
+++ b/platform/node/bitrise.yml
@@ -28,7 +28,7 @@ workflows:
- content: |-
#!/bin/bash
PACKAGE_JSON_VERSION=$(node -e "console.log(require('./package.json').version)")
- if [[ ${BITRISE_GIT_TAG:-} == "node-v${PACKAGE_JSON_VERSION}" ]]; then
+ if [[ ${BITRISE_GIT_TAG} == "node-v${PACKAGE_JSON_VERSION}" ]]; then
envman add --key PUBLISH --value true
envman add --key BUILDTYPE --value "Release"
else
@@ -63,7 +63,6 @@ workflows:
exit ${RESULT:-0}
- slack:
title: Post to Slack
- run_if: '{{enveq "SKIPCI" "false"}}'
inputs:
- webhook_url: "$SLACK_HOOK_URL"
- channel: "#gl-bots"