mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
991ef366d7
The version bump script referenced the old file path for the manifest. It was stored as a single file called `manifest.json`, but it was split into `_base.json` and platform-specific manifests in #8140. The manifest version bump script has been updated to reference `_base.json`, which is the piece that has the version property.
39 lines
976 B
Bash
Executable File
39 lines
976 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
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
|
|
|
|
printf '%s\n' 'Updating the manifest version if needed'
|
|
|
|
version="${CIRCLE_BRANCH/Version-v/}"
|
|
updated_manifest="$(jq ".version = \"$version\"" app/manifest/_base.json)"
|
|
printf '%s\n' "$updated_manifest" > app/manifest/_base.json
|
|
|
|
if [[ -z $(git status --porcelain) ]]
|
|
then
|
|
printf '%s\n' 'App manifest version already set'
|
|
exit 0
|
|
fi
|
|
|
|
git \
|
|
-c user.name='MetaMask Bot' \
|
|
-c user.email='metamaskbot@users.noreply.github.com' \
|
|
commit --message "${CIRCLE_BRANCH/-/ }" \
|
|
CHANGELOG.md app/manifest/_base.json
|
|
|
|
repo_slug="$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME"
|
|
git push "https://$GITHUB_TOKEN_USER:$GITHUB_TOKEN@github.com/$repo_slug" "$CIRCLE_BRANCH"
|