Skip to content

Commit 8fed12f

Browse files
committed
chore: Fix changelog generation
1 parent 4382d74 commit 8fed12f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,15 @@ jobs:
4343
# Get latest tag name
4444
latestTag=$(git describe --tags `git rev-list --tags --max-count=1`)
4545
# Checkout latest tag
46-
echo checking out ${latesttag}
46+
echo checking out ${latestTag}
4747
git checkout $latestTag
4848
# Build changelog
4949
conventional-changelog -p angular -i CHANGELOG.md -s
5050
git stash
5151
# Push changes
5252
git checkout develop
5353
git stash apply
54+
git add CHANGELOG.md
5455
git commit -m "chore: Updating changelog"
5556
git checkout -b release/$latestTag
5657
git push origin $latestTag

0 commit comments

Comments
 (0)