Skip to content

Commit

Permalink
build(ci): update to use new camunda credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
npepinpe committed Mar 15, 2022
1 parent b7f13d5 commit df7154b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 12 deletions.
3 changes: 1 addition & 2 deletions .ci/jobs/github_camunda.dsl
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ organizationFolder('camunda') {
organizations {
github {
repoOwner('camunda')
// TODO: update credentials when they exist
credentialsId('github-cloud-zeebe-app')
credentialsId('github-camunda-zeebe-app')

traits {
cleanBeforeCheckoutTrait {
Expand Down
3 changes: 1 addition & 2 deletions .ci/pipelines/docker_zeebe.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,7 @@ spec:
steps {
git url: 'https://github.com/camunda/zeebe.git',
branch: "${params.BRANCH}",
// TODO: update when the new credentials is available
credentialsId: 'github-cloud-zeebe-app',
credentialsId: 'github-camunda-zeebe-app',
poll: false

container('maven') {
Expand Down
5 changes: 2 additions & 3 deletions .ci/pipelines/release_zeebe.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ spec:
GPG_PASS = credentials('password_maven_central_gpg_signing_key')
GPG_PUB_KEY = credentials('maven_central_gpg_signing_key_pub')
GPG_SEC_KEY = credentials('maven_central_gpg_signing_key_sec')
GITHUB_TOKEN = credentials('github-cloud-zeebe-app')
GITHUB_TOKEN = credentials('github-camunda-zeebe-app')
RELEASE_VERSION = "${params.RELEASE_VERSION}"
RELEASE_BRANCH = "release-${params.RELEASE_VERSION}"
DEVELOPMENT_VERSION = "${params.DEVELOPMENT_VERSION}"
Expand All @@ -83,8 +83,7 @@ spec:
steps {
git url: 'https://github.com/camunda/zeebe.git',
branch: "${env.RELEASE_BRANCH}",
// TODO: update credentials when they exist
credentialsId: 'github-cloud-zeebe-app',
credentialsId: 'github-camunda-zeebe-app',
poll: false

container('maven') {
Expand Down
5 changes: 2 additions & 3 deletions .ci/pipelines/release_zeebe_java11.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ spec:
GPG_PASS = credentials('password_maven_central_gpg_signing_key')
GPG_PUB_KEY = credentials('maven_central_gpg_signing_key_pub')
GPG_SEC_KEY = credentials('maven_central_gpg_signing_key_sec')
GITHUB_TOKEN = credentials('github-cloud-zeebe-app')
GITHUB_TOKEN = credentials('github-camunda-zeebe-app')
RELEASE_VERSION = "${params.RELEASE_VERSION}"
RELEASE_BRANCH = "release-${params.RELEASE_VERSION}"
DEVELOPMENT_VERSION = "${params.DEVELOPMENT_VERSION}"
Expand All @@ -82,8 +82,7 @@ spec:
steps {
git url: 'https://github.com/camunda/zeebe.git',
branch: "${env.RELEASE_BRANCH}",
// TODO: update when the new credentials are available
credentialsId: 'github-cloud-zeebe-app',
credentialsId: 'github-camunda-zeebe-app',
poll: false

container('maven') {
Expand Down
3 changes: 1 addition & 2 deletions .ci/seed.dsl
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ def seedJob = job('seed-job-zeebe') {
git {
remote {
github 'camunda/zeebe', 'https'
# TODO: update when the new credentials are available
credentials 'github-cloud-zeebe-app'
credentials 'github-camunda-zeebe-app'
}
branch 'main'
extensions {
Expand Down

0 comments on commit df7154b

Please sign in to comment.