File tree Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -106,12 +106,12 @@ jobs:
106
106
else
107
107
# If stable, bump minor and add beta (4.1.1 -> 4.2.0)
108
108
BASE_VERSION=$(python3 -c "
109
- version = '$CURRENT_VERSION'
110
- parts = version.split('.')
111
- parts[1] = str(int(parts[1]) + 1)
112
- parts[2] = '0'
113
- print('.'.join(parts))
114
- ")
109
+ version = '$CURRENT_VERSION'
110
+ parts = version.split('.')
111
+ parts[1] = str(int(parts[1]) + 1)
112
+ parts[2] = '0'
113
+ print('.'.join(parts))
114
+ " )
115
115
BETA_VERSION=" ${BASE_VERSION}b1"
116
116
fi
117
117
Original file line number Diff line number Diff line change @@ -102,12 +102,12 @@ jobs:
102
102
else
103
103
# Bump minor version for alpha (4.1.1 -> 4.2.0)
104
104
BASE_VERSION=$(python3 -c "
105
- version = '$CURRENT_VERSION'
106
- parts = version.split('.')
107
- parts[1] = str(int(parts[1]) + 1)
108
- parts[2] = '0'
109
- print('.'.join(parts))
110
- ")
105
+ version = '$CURRENT_VERSION'
106
+ parts = version.split('.')
107
+ parts[1] = str(int(parts[1]) + 1)
108
+ parts[2] = '0'
109
+ print('.'.join(parts))
110
+ " )
111
111
fi
112
112
113
113
ALPHA_VERSION=" ${BASE_VERSION}a${DATE_STAMP}.${TIME_STAMP}.${COMMIT_SHORT}"
You can’t perform that action at this time.
0 commit comments