mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
83c2440509
* ci: Rename full_test to test_and_release * ci: Add scripts to automate GH releases * Add .bak files to .gitignore * ci: Add reviewer to the auto version PR
52 lines
1.3 KiB
Bash
Executable File
52 lines
1.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -x
|
|
set -e
|
|
set -u
|
|
set -o pipefail
|
|
|
|
if [[ "${CI:-}" != 'true' ]]
|
|
then
|
|
printf '%s\n' 'CI environment variable must be set to true'
|
|
exit 1
|
|
fi
|
|
|
|
if [[ "${CIRCLECI:-}" != 'true' ]]
|
|
then
|
|
printf '%s\n' 'CIRCLECI environment variable must be set to true'
|
|
exit 1
|
|
fi
|
|
|
|
function install_github_cli ()
|
|
{
|
|
printf '%s\n' 'Installing hub CLI'
|
|
pushd "$(mktemp -d)"
|
|
curl -sSL 'https://github.com/github/hub/releases/download/v2.11.2/hub-linux-amd64-2.11.2.tgz' | tar xz
|
|
PATH="$PATH:$PWD/hub-linux-amd64-2.11.2/bin"
|
|
popd
|
|
}
|
|
|
|
current_commit_msg=$(git show -s --format='%s' HEAD)
|
|
|
|
if grep --quiet '^Version v' <<< "$current_commit_msg"
|
|
then
|
|
install_github_cli
|
|
|
|
printf '%s\n' 'Creating GitHub Release'
|
|
read -ra commit_words <<< "$current_commit_msg"
|
|
tag="${commit_words[1]}"
|
|
release_body="$(awk -v version="${tag##v}" -f .circleci/scripts/show-changelog.awk CHANGELOG.md)"
|
|
pushd builds
|
|
hub release create \
|
|
--attach metamask-chrome-*.zip \
|
|
--attach metamask-firefox-*.zip \
|
|
--message "${commit_words[0]} ${commit_words[1]#v}" \
|
|
--message "$release_body" \
|
|
--commitish "$CIRCLE_SHA1" \
|
|
"$tag"
|
|
popd
|
|
else
|
|
printf '%s\n' 'Skipping GitHub Release'
|
|
exit 0
|
|
fi
|