We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b73e16 commit 117e407Copy full SHA for 117e407
.github/workflows/release.yml
@@ -19,9 +19,15 @@ jobs:
19
- uses: actions/checkout@v2
20
with:
21
fetch-depth: 0
22
+ - name: Setup Node
23
+ uses: actions/setup-node@v4
24
+ with:
25
+ node-version: 20
26
+ - name: Install dependencies
27
+ run: npm i -g node-fetch
28
- id: generate
29
run: |
- changelog=$(./.github/scripts/generate-changelog.sh)
30
+ changelog=$(node ./.github/scripts/generate-changelog.mjs)
31
echo $changelog
32
echo "changelog<<EOF" >> $GITHUB_OUTPUT
33
echo "${changelog}" >> $GITHUB_OUTPUT
0 commit comments