Skip to content

Commit

Permalink
ci: replace special chars (#799)
Browse files Browse the repository at this point in the history
  • Loading branch information
v1v authored Apr 26, 2022
1 parent 1331dc5 commit 26ec0cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .ci/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
pipeline {
agent { label 'ubuntu-20 && immutable' }
environment {
BRANCH_NAME_LOWER_CASE = "${env.BRANCH_NAME.toLowerCase()}"
BRANCH_NAME_LOWER_CASE = "${env.BRANCH_NAME.toLowerCase().replaceAll('[^a-z0-9-]', '-')}"
CREATED_DATE = "${new Date().getTime()}"
ENVIRONMENT = "ci"
REPO = "elastic-package"
Expand Down

0 comments on commit 26ec0cd

Please sign in to comment.