Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 19cbad1

Browse files
committed
chore: Bump version to 14.0.0 w/ changelog
1 parent 9248c51 commit 19cbad1

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

Jenkinsfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ pipeline {
4848

4949
stage('Install dependencies') {
5050
steps {
51-
nodejs(nodeJSInstallationName: 'Node 12.x') {
51+
nodejs(nodeJSInstallationName: 'Node 14.x') {
5252
ansiColor('xterm') {
5353
sh 'npm ci'
5454
}
@@ -66,7 +66,7 @@ pipeline {
6666
usernamePassword(credentialsId: 'npmjs-dynatrace-nodejs-token', passwordVariable: 'NPM_PUBLISH_TOKEN', usernameVariable: 'NPM_USER'),
6767
usernamePassword(credentialsId: 'dt-ci-github', passwordVariable: 'GITHUB_TOKEN', usernameVariable: 'GITHUB_USER')
6868
]) {
69-
nodejs(nodeJSInstallationName: 'Node 12.x') {
69+
nodejs(nodeJSInstallationName: 'Node 14.x') {
7070

7171
sh '''
7272
npm run publish-release

libs/tools/release/src/publish-release/publish-release.ts

-3
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,6 @@ export async function publishRelease(workspaceRoot: string): Promise<void> {
103103
// check that the build was successful
104104
await verifyPassingGithubStatus(gitClient, githubApi, currentBranch);
105105

106-
// verify un-committed changes
107-
verifyNoUncommittedChanges(gitClient);
108-
109106
// verify local commits match upstream
110107
verifyLocalCommitsMatchUpstream(gitClient, currentBranch);
111108

0 commit comments

Comments
 (0)