Skip to content

Commit b2d8c3c

Browse files
authored
Merge pull request devicons#1084 from devicons/develop
Fix issue with npm publish script
2 parents 84e8500 + e5c27e9 commit b2d8c3c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/npm_publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
# "ref" specifies the branch to check out.
1313
# "github.event.release.target_commitish" is a global variable and specifies the branch the release targeted
1414
ref: ${{ github.event.release.target_commitish }}
15-
- name: Use Node.js 12
16-
uses: actions/setup-node@v1
15+
- name: Use Node.js v16
16+
uses: actions/setup-node@v2
1717
with:
18-
node-version: 12
18+
node-version: 16
1919
registry-url: https://registry.npmjs.org/ # Specifies the registry, this field is required!
2020
- run: npm ci
2121
- run: npm publish

0 commit comments

Comments
 (0)