Reviewed By: bhamodi Differential Revision: D33331422 fbshipit-source-id: 016e8dcc0c0c7f1fc353a348b54fda0d5e2ddc01
22 lines
719 B
Bash
22 lines
719 B
Bash
#!/bin/bash
|
|
# Copyright (c) Meta Platforms, Inc. and 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"
|