Skip to content

Commit 8d4e550

Browse files
committed
feat(): Fix workflow with updated node version.
1 parent c799035 commit 8d4e550

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Semantic Realease & NPM Deploy
33
on:
44
push:
55
tags-ignore:
6-
- "**"
6+
- '**'
77
branches:
88
- master
99
jobs:
@@ -14,11 +14,11 @@ jobs:
1414
- uses: actions/checkout@v2
1515
- uses: actions/setup-node@v2-beta
1616
with:
17-
node-version: 12
17+
node-version: 14
1818
- name: Install Dependencies
19-
run: yarn install
19+
run: yarn install
2020
- name: Semantic Release
2121
env:
2222
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
2323
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
24-
run: npx semantic-release
24+
run: npx semantic-release

0 commit comments

Comments
 (0)