Skip to content

Commit

Permalink
Pass branch name to XSLT stylesheet.
Browse files Browse the repository at this point in the history
  • Loading branch information
raducoravu committed Jan 25, 2024
1 parent 6455f01 commit b2b4c19
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build/build-validate-check.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ task runValidation(type:Exec, dependsOn: [initValidation]) {
out: "${projectDirFile.getAbsolutePath() + '/validationReport.md'}",
force: "true",
style: "${buildDirFile.getAbsolutePath() + '/validationReport.xsl'}"
)
){
param(name:"BRANCH_NAME", expression:System.getenv( 'BRANCH_NAME' ))
}
}
}
}
Expand Down

0 comments on commit b2b4c19

Please sign in to comment.