mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 11:28:51 +01:00
25 lines
678 B
Bash
25 lines
678 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
set -u
|
||
|
set -o pipefail
|
||
|
|
||
|
# => Version-v10.24.1
|
||
|
version="${CIRCLE_BRANCH/Version-v/}"
|
||
|
current_commit_msg=$(git show -s --format='%s' HEAD)
|
||
|
|
||
|
if [[ $current_commit_msg =~ Version[[:space:]](v[[:digit:]]+.[[:digit:]]+.[[:digit:]]+[-]beta.[[:digit:]]) ]]
|
||
|
then
|
||
|
# filter the commit message like Version v10.24.1-beta.1
|
||
|
printf '%s\n' "Create a build for $version with beta version $current_commit_msg"
|
||
|
yarn build --build-type beta dist
|
||
|
yarn build --build-type beta prod
|
||
|
else
|
||
|
printf '%s\n' 'Commit message does not match commit message for beta pattern; skipping beta automation build'
|
||
|
mkdir dist
|
||
|
mkdir builds
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
exit 0
|