Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-backend-app-generic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ on:
workflow_call:
inputs:
dockerImage:
required: true
required: false
type: string
dockerUsername:
required: true
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
run: >
mvn --batch-mode deploy -DskipTests -Dmaven.install.skip -Dmaven.deploy.skip -Dpowsybl.docker.deploy
-Djib.httpTimeout=60000
-Djib.to.image="$RUNGHA_DOCKER_IMAGE"
${RUNGHA_DOCKER_IMAGE:+-Djib.to.image="$RUNGHA_DOCKER_IMAGE"}
-Djib.to.auth.username="$RUNGHA_DOCKER_USERNAME"
-Djib.to.auth.password="$RUNGHA_DOCKERHUB_TOKEN"
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/manual-dockerdeploy-backend-app-generic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ on:
workflow_call:
inputs:
dockerImage:
required: true
required: false
type: string
dockerUsername:
required: true
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
run: >
mvn --batch-mode deploy -DskipTests -Dmaven.install.skip -Dmaven.deploy.skip -Dpowsybl.docker.deploy
-Djib.httpTimeout=60000
-Djib.to.image="$RUNGHA_DOCKER_IMAGE:$CURRENT_TAG_VERSION"
${RUNGHA_DOCKER_IMAGE:+-Djib.to.image="$RUNGHA_DOCKER_IMAGE:$CURRENT_TAG_VERSION"}
-Djib.to.auth.username="$RUNGHA_DOCKER_USERNAME"
-Djib.to.auth.password="$RUNGHA_DOCKER_RELEASE"
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/patch-backend-app-generic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
required: true
type: string
dockerImage:
required: true
required: false
type: string
dockerUsername:
required: true
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
run: >
mvn --batch-mode deploy -DskipTests -Dmaven.install.skip -Dmaven.deploy.skip -Dpowsybl.docker.deploy
-Djib.httpTimeout=60000
-Djib.to.image="$RUNGHA_DOCKER_IMAGE:$GITHUB_SHORT_VERSION"
${RUNGHA_DOCKER_IMAGE:+-Djib.to.image="$RUNGHA_DOCKER_IMAGE:$GITHUB_SHORT_VERSION"}
-Djib.to.auth.username="$RUNGHA_DOCKER_USERNAME"
-Djib.to.auth.password="$RUNGHA_DOCKERHUB_TOKEN"
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-backend-app-generic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
required: true
type: string
dockerImage:
required: true
required: false
type: string
dockerUsername:
required: true
Expand Down Expand Up @@ -234,7 +234,7 @@ jobs:
run: >
mvn --batch-mode deploy -DskipTests -Dmaven.install.skip -Dmaven.deploy.skip -Dpowsybl.docker.deploy
-Djib.httpTimeout=60000
-Djib.to.image="$RUNGHA_DOCKER_IMAGE:$GITHUB_SHORT_VERSION"
${RUNGHA_DOCKER_IMAGE:+-Djib.to.image="$RUNGHA_DOCKER_IMAGE:$GITHUB_SHORT_VERSION"}
-Djib.to.auth.username="$RUNGHA_DOCKER_USERNAME"
-Djib.to.auth.password="$RUNGHA_DOCKERHUB_TOKEN"
env:
Expand Down