Skip to content

Commit

Permalink
fixup! Align all pipelines on generate_stage_repository script
Browse files Browse the repository at this point in the history
  • Loading branch information
ekohl committed Jun 4, 2024
1 parent b9b501e commit 9892fd5
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 6 deletions.
5 changes: 4 additions & 1 deletion theforeman.org/pipelines/release/pipelines/candlepin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ pipeline {

environment {
PROJECT = 'candlepin'
VERSION = candlepin_version
}

script {
env.VERSION = candlepin_version
}

stages {
Expand Down
5 changes: 4 additions & 1 deletion theforeman.org/pipelines/release/pipelines/client.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ pipeline {

environment {
PROJECT = 'client'
VERSION = foreman_version
}

script {
env.VERSION = foreman_version
}

stages {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ pipeline {

environment {
PROJECT = 'foreman'
VERSION = foreman_version
}

script {
env.VERSION = foreman_version
}

stages {
Expand Down
5 changes: 4 additions & 1 deletion theforeman.org/pipelines/release/pipelines/katello.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ pipeline {

environment {
PROJECT = 'katello'
VERSION = katello_version
}

script {
env.VERSION = katello_version
}

stages {
Expand Down
5 changes: 4 additions & 1 deletion theforeman.org/pipelines/release/pipelines/plugins.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ pipeline {

environment {
PROJECT = 'plugins'
VERSION = foreman_version
}

script {
env.VERSION = foreman_version
}

stages {
Expand Down
5 changes: 4 additions & 1 deletion theforeman.org/pipelines/release/pipelines/pulpcore.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ pipeline {

environment {
PROJECT = 'pulpcore'
VERSION = pulpcore_version
}

script {
env.VERSION = pulpcore_version
}

stages {
Expand Down

0 comments on commit 9892fd5

Please sign in to comment.