This is an automated email from the ASF dual-hosted git repository.
piergiorgio pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/manifoldcf.git
The following commit(s) were added to refs/heads/trunk by this push:
new 20dbe3fc2 Update create-docker-image.yml
20dbe3fc2 is described below
commit 20dbe3fc26a931042fdfbefa87f51a6b8736af03
Author: Piergiorgio Lucidi <[email protected]>
AuthorDate: Fri Sep 12 23:26:30 2025 +0200
Update create-docker-image.yml
Added 2.29 release
---
.github/workflows/create-docker-image.yml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/.github/workflows/create-docker-image.yml
b/.github/workflows/create-docker-image.yml
index a6dd377be..5c2bfa8c2 100644
--- a/.github/workflows/create-docker-image.yml
+++ b/.github/workflows/create-docker-image.yml
@@ -25,6 +25,7 @@ on:
type: choice
description: Select the ManifoldCF release
options:
+ - 2.29-JDK-11
- 2.28-JDK-11
- 2.27-JDK-11
- 2.26-JDK-11 #Java 11
@@ -59,6 +60,7 @@ on:
jobs:
createDockerImageBuildingFromSourceCode:
if: |
+ (github.event.inputs.release != '2.29-JDK-11') &&
(github.event.inputs.release != '2.28-JDK-11') &&
(github.event.inputs.release != '2.27-JDK-11') &&
(github.event.inputs.release != '2.26-JDK-11') &&
@@ -152,6 +154,7 @@ jobs:
createDockerImageForAvailableDistributionPackage:
if: |
+ (github.event.inputs.release == '2.29-JDK-11') ||
(github.event.inputs.release == '2.28-JDK-11') ||
(github.event.inputs.release == '2.27-JDK-11') ||
(github.event.inputs.release == '2.26-JDK-11') ||