Reviewed By: passy Differential Revision: D17863711 fbshipit-source-id: 259dc77826fb803ff1b88c88529d7f679d3b74d8
22 lines
717 B
Bash
22 lines
717 B
Bash
#!/bin/bash
|
|
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
#
|
|
# This source code is licensed under the MIT license found in the
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
echo "✨ Creating new Sonar iOS release on GitHub..."
|
|
|
|
echo "What should the patch version of the next release be?"
|
|
read -r VERSION
|
|
|
|
TMP_DIR=$(mktemp -d)
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
JSON=$(cat "$DIR/public-ios-release.json")
|
|
JSON=${JSON/__VERSION__/$VERSION}
|
|
JSON=${JSON/__VERSION__/$VERSION}
|
|
JSON=${JSON/__USER__/$USER}
|
|
echo "$JSON" > "$TMP_DIR/job.json"
|
|
scutil create "$TMP_DIR/job.json"
|
|
echo "✅ GitHub release will be automatically created once the Sandcastle job finishes."
|
|
rm -rf "$TMP_DIR"
|