Skip to content

Commit e66fefc

Browse files
committed
chore: fix cog patch release automation oversight
1 parent 3a3de65 commit e66fefc

File tree

1 file changed

+22
-9
lines changed

1 file changed

+22
-9
lines changed

cells/_automation/configs.nix

+22-9
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,32 @@ in {
1414
branch_whitelist = ["main" "release/**"];
1515
ignore_merge_commits = true;
1616
pre_bump_hooks = [
17-
''git switch -c "$(echo "release/{{version}}" | sed 's/\.[^.]*$//')" || git switch "$(echo "release/{{version}}" | sed 's/\.[^.]*$//')" && git merge main''
1817
"echo {{version}} > ./VERSION"
18+
''
19+
branch="$(echo "release/{{version}}" | sed 's/\.[^.]*$//')"
20+
if [ `git rev-parse --verify $branch 2>/dev/null` ]
21+
then
22+
git switch -m "$branch" || exit 1
23+
git merge main
24+
else
25+
git switch -c "$branch" || exit 1
26+
fi
27+
''
1928
];
2029
post_bump_hooks = [
21-
''git push --set-upstream origin "$(echo "release/{{version}}" | sed 's/\.[^.]*$//')"''
22-
"git push origin v{{version}}"
30+
''
31+
branch="$(echo "release/{{version}}" | sed 's/\.[^.]*$//')"
32+
git push --set-upstream origin "$branch"
33+
git push origin v{{version}}
34+
35+
git switch main
36+
git merge "$branch" --no-commit --no-ff
37+
echo {{version+minor-dev}} > ./VERSION
38+
git add VERSION
39+
git commit -m "chore: sync with release"
40+
git push origin main
41+
''
2342
"cog -q changelog --at v{{version}}"
24-
"git switch main"
25-
''git checkout "$(echo "release/{{version}}" | sed 's/\.[^.]*$//')" -- ./VERSION''
26-
''git merge "$(echo "release/{{version}}" | sed 's/\.[^.]*$//')"''
27-
"git push"
28-
"echo {{version+minor-dev}} > ./VERSION"
29-
"git add VERSION"
3043
];
3144
changelog = {
3245
path = "CHANGELOG.md";

0 commit comments

Comments
 (0)