Skip to content

Commit 117e407

Browse files
committed
💚 Fix ci
1 parent 8b73e16 commit 117e407

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,15 @@ jobs:
1919
- uses: actions/checkout@v2
2020
with:
2121
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
2228
- id: generate
2329
run: |
24-
changelog=$(./.github/scripts/generate-changelog.sh)
30+
changelog=$(node ./.github/scripts/generate-changelog.mjs)
2531
echo $changelog
2632
echo "changelog<<EOF" >> $GITHUB_OUTPUT
2733
echo "${changelog}" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)