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/build.yml
+6-5Lines changed: 6 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
name: Build Demo, Deploy to Github Pages, Publish to NPM, Release with Changelog
1
+
name: Release with Changelog, Build Demo, Deploy to Github Pages, Publish to NPM
2
2
# concat workflows because it is not easy to run trigger multiple. https://docs.github.com/en/actions/using-workflows/triggering-a-workflow#triggering-a-workflow-from-a-workflow
3
3
permissions:
4
4
contents: write
@@ -24,6 +24,11 @@ jobs:
24
24
- name: Install
25
25
run: npm install
26
26
27
+
- name: Release with Changelog
28
+
run: npx changelogithub # or changelogithub@0.12 if ensure the stable result
29
+
env:
30
+
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
31
+
27
32
- name: Build Demo
28
33
run: npm run build:web
29
34
@@ -53,7 +58,3 @@ jobs:
53
58
- run: npm publish
54
59
env:
55
60
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
56
-
- name: Release with Changelog
57
-
run: npx changelogithub # or changelogithub@0.12 if ensure the stable result
0 commit comments