We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 577b623 commit ef3a04fCopy full SHA for ef3a04f
.github/workflows/release.yml
@@ -9,14 +9,19 @@ jobs:
9
release:
10
runs-on: ubuntu-latest
11
steps:
12
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
13
with:
14
fetch-depth: 0
15
16
- - uses: actions/setup-node@v3
+ - uses: actions/setup-node@v4
17
18
- node-version: 16.x
+ node-version: 20.x
19
+ cache: "npm"
20
- - run: npx changelogithub
21
+ - name: Install Dependencies
22
+ run: npm install
23
+
24
+ - name: Generate Changelog and Release
25
+ run: npx changelogithub
26
env:
27
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
package.json
@@ -28,7 +28,9 @@
28
"test": "bun test"
29
},
30
"files": [
31
- "dist"
+ "dist",
32
+ "README.md",
33
+ "LICENSE"
34
],
35
"keywords": [
36
"bun",
0 commit comments