We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4382d74 commit 8fed12fCopy full SHA for 8fed12f
.github/workflows/release.yml
@@ -43,14 +43,15 @@ jobs:
43
# Get latest tag name
44
latestTag=$(git describe --tags `git rev-list --tags --max-count=1`)
45
# Checkout latest tag
46
- echo checking out ${latesttag}
+ echo checking out ${latestTag}
47
git checkout $latestTag
48
# Build changelog
49
conventional-changelog -p angular -i CHANGELOG.md -s
50
git stash
51
# Push changes
52
git checkout develop
53
git stash apply
54
+ git add CHANGELOG.md
55
git commit -m "chore: Updating changelog"
56
git checkout -b release/$latestTag
57
git push origin $latestTag
0 commit comments