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

dgrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk-runtime-java.git


The following commit(s) were added to refs/heads/master by this push:
     new 7f76159  support historically tagging conventions in release task 
(#147)
7f76159 is described below

commit 7f761599d1ec7df04af4d686b744921703ba3b4a
Author: David Grove <[email protected]>
AuthorDate: Mon Feb 13 10:47:40 2023 -0500

    support historically tagging conventions in release task (#147)
---
 .github/workflows/ci.yaml | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index d95f6be..6e6a971 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -77,7 +77,6 @@ jobs:
 
       # Conditionally publish runtime images to DockerHub
       # Important: naming convention for release tags is runtime@version
-      #   For this repository: [email protected] or [email protected]
       - name: Docker Login
         if: ${{ env.PUSH_NIGHTLY  == 'true' || env.PUSH_RELEASE == 'true' }}
         uses: docker/login-action@v2
@@ -99,4 +98,9 @@ jobs:
         run: |
           RUNTIME_VERSION=${GITHUB_REF_NAME%@*}
           IMAGE_TAG=${GITHUB_REF_NAME##*@}
-          ./gradlew :core:java${RUNTIME_VERSION}Action:distDocker 
-PdockerRegistry=docker.io -PdockerImagePrefix=openwhisk 
-PdockerImageTag=$IMAGE_TAG
+          if [ ${RUNTIME_VERSION} == "8" ]; then
+            RUNTIME="java8"
+          elif [ ${RUNTIME_VERSION} == "8a" ]; then
+            RUNTIME="java8actionloop"
+          fi
+          ./gradlew :core:${RUNTIME}Action:distDocker 
-PdockerRegistry=docker.io -PdockerImagePrefix=openwhisk 
-PdockerImageTag=$IMAGE_TAG

Reply via email to