1
1
mirror of https://github.com/orhun/git-cliff.git synced 2024-09-11 06:55:38 +03:00

fix(cd): set node version to 18 for building NPM packages

This commit is contained in:
Orhun Parmaksız 2024-03-03 23:06:54 +03:00
parent 67dfbbc952
commit 5dd0d2ebf8
No known key found for this signature in database
GPG Key ID: F83424824B3E4B90

View File

@ -223,7 +223,7 @@ jobs:
if: matrix.build.NPM_PUBLISH == true
uses: actions/setup-node@v4
with:
node-version: "16"
node-version: 18
registry-url: "https://registry.npmjs.org"
- name: Publish to NPM
if: matrix.build.NPM_PUBLISH == true
@ -298,7 +298,7 @@ jobs:
- name: Install node
uses: actions/setup-node@v4
with:
node-version: "16"
node-version: 18
registry-url: "https://registry.npmjs.org"
- name: Publish the package
shell: bash