Skip to content

Commit

Permalink
fix: Setup nodejs in release actions
Browse files Browse the repository at this point in the history
  • Loading branch information
thebongy committed May 1, 2020
1 parent d6a318b commit 5c78825
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,12 @@ jobs:
with:
file: package.json
tagFormat: v${version}


- name: Setup nodejs
uses: actions/setup-node@v1
with:
node-version: '12.x'

- name: Publish Release
id: create_release
uses: actions/create-release@latest
Expand Down Expand Up @@ -105,6 +110,11 @@ jobs:
file: package.json
tagFormat: v${version}-beta

- name: Setup nodejs
uses: actions/setup-node@v1
with:
node-version: '12.x'

- name: Download Artifact
uses: actions/download-artifact@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "juno-node",
"version": "0.0.1",
"version": "0.0.2",
"description": "",
"keywords": [],
"main": "dist/juno-node.cjs.js",
Expand Down

0 comments on commit 5c78825

Please sign in to comment.