We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 228d1a2 commit 63d8548Copy full SHA for 63d8548
scripts/release.sh
@@ -11,12 +11,19 @@ then
11
VERSION=$VERSION npm run build
12
13
# commit
14
- git add -A
+ git add dist
15
git commit -m "[build] $VERSION"
16
npm version $VERSION --message "[release] $VERSION"
17
18
# publish
19
git push origin refs/tags/v$VERSION
20
git push
21
npm publish
22
+
23
+ # changelog
24
+ npm run changelog
25
+ read OKAY
26
+ git add CHANGELOG.md
27
+ git commit -m "[changelog] $VERSION"
28
+ git push
29
fi
0 commit comments