Skip to content

Commit

Permalink
Update Jenkinsfile
Browse files Browse the repository at this point in the history
Fixing missing parameter reference.
  • Loading branch information
Cory authored Aug 23, 2021
1 parent 88cfdcc commit b3e24c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .jenkins/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pipeline{
stage('Prep - Clean/Checkout'){
steps{
cleanWs deleteDirs: true
git credentialsId: 'GitHub-PAT', url: "${env.gitUrl}", branch: 'main'
git credentialsId: 'GitHub-PAT', url: "${env.gitUrl}", branch: "${env.gitBranch}"
}
}

Expand All @@ -38,4 +38,4 @@ pipeline{
}
}
}
}
}

0 comments on commit b3e24c0

Please sign in to comment.