You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/release.yml
+17-18Lines changed: 17 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -53,25 +53,24 @@ jobs:
53
53
env:
54
54
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
55
55
56
-
- name: Generate changelog
57
-
id: changelog
58
-
run: |
59
-
# Extract version from tag
60
-
VERSION=${GITHUB_REF#refs/tags/v}
61
-
echo "version=$VERSION" >> $GITHUB_OUTPUT
62
-
63
-
# Generate changelog (you might want to use a tool like conventional-changelog)
64
-
echo "## Changes in v$VERSION" > CHANGELOG_TEMP.md
65
-
echo "" >> CHANGELOG_TEMP.md
66
-
echo "See the [full changelog](https://github.com/${{ github.repository }}/compare/v$(git describe --tags --abbrev=0 HEAD^)...v$VERSION) for details." >> CHANGELOG_TEMP.md
0 commit comments