This is an automated email from the ASF dual-hosted git repository.

piergiorgio pushed a commit to branch CONNECTORS-1754
in repository https://gitbox.apache.org/repos/asf/manifoldcf.git


The following commit(s) were added to refs/heads/CONNECTORS-1754 by this push:
     new 82086d988 added Dockerfiles for building all the Release Images 
(CONNECTORS-1754)
82086d988 is described below

commit 82086d988d1b39b3ea9a57426db38c77e767c025
Author: Piergiorgio Lucidi <[email protected]>
AuthorDate: Fri Jun 28 15:18:54 2024 +0200

    added Dockerfiles for building all the Release Images (CONNECTORS-1754)
---
 .github/workflows/create-docker-image.yml | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/.github/workflows/create-docker-image.yml 
b/.github/workflows/create-docker-image.yml
index a31058bc0..bea41daee 100644
--- a/.github/workflows/create-docker-image.yml
+++ b/.github/workflows/create-docker-image.yml
@@ -57,11 +57,11 @@ on:
 jobs:
   createDockerImageBuildingFromSourceCode:
     if: |
-          ${{ github.event.inputs.release  != '2.26-JDK-11' &&
-              github.event.inputs.release  != '2.25-JDK-8' &&
-              github.event.inputs.release  != '2.24-JDK-8' &&
-              github.event.inputs.release  != '2.23-JDK-8' &&
-              github.event.inputs.release  != '1.10-JDK-7' }}
+          (github.event.inputs.release  != '2.26-JDK-11') &&
+          (github.event.inputs.release  != '2.25-JDK-8') &&
+          (github.event.inputs.release  != '2.24-JDK-8') &&
+          (github.event.inputs.release  != '2.23-JDK-8') &&
+          (github.event.inputs.release  != '1.10-JDK-7')
     runs-on: ubuntu-22.04
     steps:
       - name: Extract MCF Release version
@@ -134,11 +134,11 @@ jobs:
       
   createDockerImageForAvailableDistributionPackage:
     if: |
-          ${{ github.event.inputs.release  == '2.26-JDK-11' ||
-              github.event.inputs.release  == '2.25-JDK-8' ||
-              github.event.inputs.release  == '2.24-JDK-8' ||
-              github.event.inputs.release  == '2.23-JDK-8' ||
-              github.event.inputs.release  == '1.10-JDK-7' }}
+          (github.event.inputs.release  == '2.26-JDK-11') ||
+          (github.event.inputs.release  == '2.25-JDK-8') ||
+          (github.event.inputs.release  == '2.24-JDK-8') ||
+          (github.event.inputs.release  == '2.23-JDK-8') ||
+          (github.event.inputs.release  == '1.10-JDK-7')
     runs-on: ubuntu-22.04
     steps:
       

Reply via email to