Summary: Scripts and Portforwarding things. Reviewed By: jknoxville Differential Revision: D15164852 fbshipit-source-id: a9dcdcb5e6c19dc51d1aa0158fceafe21ab7615f
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"
|