We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf6b06f commit ffc51f3Copy full SHA for ffc51f3
1 file changed
.github/workflows/release.yml
@@ -24,16 +24,13 @@ jobs:
24
25
- uses: actions/setup-node@v6
26
with:
27
- node-version: 20
28
-
29
- - name: Install git-cliff
30
- run: npm install --no-save git-cliff
+ node-version: lts/*
31
32
- name: Build tarball
33
run: mkdir dist && bash scripts/pack.sh -o dist --name viktorani-${{ github.ref_name }}
34
35
- name: Generate release notes
36
- run: git-cliff --tag ${{ github.ref_name }} --unreleased --strip header > RELEASE_NOTES.md
+ run: npx --yes git-cliff --tag ${{ github.ref_name }} --unreleased --strip header > RELEASE_NOTES.md
37
38
- name: Create GitHub Release
39
run: |
0 commit comments