Skip to content

Commit

Permalink
another typo fix in jenkins pipeline (BUILD_NUMBER), removed obsolete…
Browse files Browse the repository at this point in the history
… pipeline
  • Loading branch information
1azyman committed Feb 16, 2024
1 parent 1170edc commit 4bc7496
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 57 deletions.
2 changes: 1 addition & 1 deletion jenkins-default-pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def gitRef = params.GIT_REF ?: "master"
def publish = params.PUBLISH ?: false
def publishChannel = params.PUBLISH_CHANNEL ?: ""

def buildNumber = params.BUILD_NUMBER ?: "0"
def buildNumber = env.BUILD_NUMBER ?: "0"

if (publishChannel == "") {
if (gitRef == "stable") {
Expand Down
56 changes: 0 additions & 56 deletions jenkins-pipeline

This file was deleted.

0 comments on commit 4bc7496

Please sign in to comment.