Skip to content

Commit 28970ee

Browse files
committed
updated node image version
1 parent b727e93 commit 28970ee

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ machine:
66
jobs:
77
build:
88
docker:
9-
- image: circleci/node:8.15-alpine
9+
- image: circleci/node:8.15
1010
environment:
1111
- NPM_CONFIG_LOGLEVEL: warn
1212
working_directory: ~/repo

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Semantic release scripts",
55
"main": "index.js",
66
"scripts": {
7-
"semantic-release": "./scripts/public-circleci-lib.js"
7+
"semantic-release": "node ./scripts/public-circleci-lib.js"
88
},
99
"repository": {
1010
"type": "git",

scripts/public-circleci-app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env node
1+
#!/usr/local/bin/node
22
const path = require('path');
33
const semanticRelease = require('../utils/semanticRelease');
44
const package = require('../utils/package');

scripts/public-circleci-lib.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env node
1+
#!/usr/local/bin/node
22
const path = require('path');
33
const semanticRelease = require('../utils/semanticRelease');
44

scripts/public-jenkins-app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env node
1+
#!/usr/local/bin/node
22
const path = require('path');
33
const semanticRelease = require('../utils/semanticRelease');
44
const package = require('../utils/package');

scripts/public-jenkins-lib.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env node
1+
#!/usr/local/bin/node
22
const path = require("path");
33
const semanticRelease = require("../utils/semanticRelease");
44

0 commit comments

Comments
 (0)