mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 01:39:44 +01:00
d138882253
The `chmod` step has been removed from the GitHub Actions workflow for adding release labels. The script has been made executable in the repository instead (the file mode is tracked by git).
28 lines
1.1 KiB
Bash
Executable File
28 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
FORCE_NEXT_SEMVER_VERSION=$1
|
|
|
|
# If FORCE_NEXT_SEMVER_VERSION is defined and not empty, use its value and skip the next operations
|
|
if [ -n "$FORCE_NEXT_SEMVER_VERSION" ]
|
|
then
|
|
echo "NEXT_SEMVER_VERSION=${FORCE_NEXT_SEMVER_VERSION}" >> "$GITHUB_ENV"
|
|
exit 0
|
|
fi
|
|
|
|
# Get the highest version from release branches
|
|
VERSION_BRANCHES=$(git branch -r | grep -o 'release/[0-9]*\.[0-9]*\.[0-9]*' | grep -o '[0-9]*\.[0-9]*\.[0-9]*' | sort --version-sort | tail -n 1)
|
|
|
|
# Get the highest version from tags
|
|
VERSION_TAGS=$(git tag | grep -o 'v[0-9]*\.[0-9]*\.[0-9]*' | grep -o '[0-9]*\.[0-9]*\.[0-9]*' | sort --version-sort | tail -n 1)
|
|
|
|
# Get the version from package.json
|
|
VERSION_PACKAGE=$(node -p "require('./package.json').version")
|
|
|
|
# Compare versions and keep the highest one
|
|
HIGHEST_VERSION=$(printf "%s\n%s\n%s" "$VERSION_BRANCHES" "$VERSION_TAGS" "$VERSION_PACKAGE" | sort --version-sort | tail -n 1)
|
|
|
|
# Increment the minor version of the highest version found
|
|
NEXT_VERSION=$(echo "$HIGHEST_VERSION" | awk -F. -v OFS=. '{$2++; print}')
|
|
|
|
echo "NEXT_SEMVER_VERSION=${NEXT_VERSION}" >> "$GITHUB_ENV"
|