-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathrelease
executable file
·58 lines (46 loc) · 1.92 KB
/
release
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/bin/sh
set -e
# This script creates a new version, and then use gorelease to verify that the
# new version matches a "suggested" version.
#
# Semantic versions are generated based on commit messages, so if this script
# fails, a change was marked incorrectly.
#
# A failure may require manually creating the release, if rewriting commit
# messages is not possible (e.g., they have been merged to main). This would
# include explicitly setting a new version no., and updating the changelog
# manually to reflect changes.
# Get the latest _merged_ tag for this version. (If this is a fix to version
# 1.9, but a 2.0 is already release, 2.0 shouldn't be merged to this branch and
# not reachable from here)
BASE_VERSION=$(git tag --merged | sort -V | tail -1)
echo "Base version: $BASE_VERSION"
pnpm exec commit-and-tag-version
exit 0
# Hmm for some reason the following fails to extract the suggested version from
# gorelease output on github, but works locally.
NEW_VERSION=$(git tag --merged | sort -V | tail -1)
if [ "$BASE_VERSION" = "$NEW_VERSION" ]; then
echo "Same version after release"
echo "Base version: $BASE_VERSION"
exit 1
fi
# RELEASE_OUTPUT=$(gorelease -base=$BASE_VERSION)
SUGGESTED_VERSION=$(gorelease -base=$BASE_VERSION | tail -1 | grep -Po 'v{1,}\d(\.\d{1,}){2}$')
# echo "LAST LINE: $(echo $RELEASE_OUTPUT | tail -1)"
if [ "$SUGGESTED_VERSION" = "" ]; then
echo "Error detecting suggested release"
gorelease -base=$BASE_VERSION
echo "Base version: $BASE_VERSION"
echo "New version (from commits): $NEW_VERSION"
echo "Suggested version (from gorelease): $SUGGESTED_VERSION"
exit 1
fi
if [ "$SUGGESTED_VERSION" != "$NEW_VERSION" ]; then
echo "New version does not match suggested version"
echo "Base version: $BASE_VERSION"
echo "New version (from commits): $NEW_VERSION"
echo "Suggested version (from gorelease): $SUGGESTED_VERSION"
exit 1
fi
echo "Suggested: $SUGGESTED_VERSION"