Skip to content

Commit 4ed7b76

Browse files
authored
Update release script to build packages using Node 14 (#889)
* Update node version in package-builder imaage. * Update publish script to ignore local changes while updating package version.
1 parent c29a8a5 commit 4ed7b76

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/publish-container/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:8
1+
FROM node:14
22

33
# Install dependencies
44
RUN apt-get update && \

scripts/publish.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ npm run build:release
8787
echo "Ran publish build."
8888

8989
echo "Making a $VERSION version..."
90-
npm version $VERSION
90+
npm version --no-git-tag-version $VERSION
9191
NEW_VERSION=$(jq -r ".version" package.json)
9292
echo "Made a $VERSION version."
9393

0 commit comments

Comments
 (0)