[ofbiz-framework] branch experimental-docker updated: Added: Experimenting with container tag gernation (OFBIZ-12757)

2023-03-01 Thread danwatford
This is an automated email from the ASF dual-hosted git repository.

danwatford pushed a commit to branch experimental-docker
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git


The following commit(s) were added to refs/heads/experimental-docker by this 
push:
 new 2ec8fe2383 Added: Experimenting with container tag gernation 
(OFBIZ-12757)
2ec8fe2383 is described below

commit 2ec8fe2383204032c1b015e2f7fa450f66a97767
Author: Daniel Watford 
AuthorDate: Wed Mar 1 15:57:29 2023 +

Added: Experimenting with container tag gernation (OFBIZ-12757)
---
 .github/workflows/docker-image.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.github/workflows/docker-image.yaml 
b/.github/workflows/docker-image.yaml
index e702aa527e..0a7c59c382 100644
--- a/.github/workflows/docker-image.yaml
+++ b/.github/workflows/docker-image.yaml
@@ -40,6 +40,7 @@ jobs:
   # When this build is triggered by pusing a git tag, use the string 
following 'release' as the container tag
   # value.
   type=match,pattern=release(.*)
+  type=match,pattern=exp(.*)
   # When this build is triggered by pushing to a branch, use the 
branch name with the suffix '-snapshot' as the
   # container tag value.
   type=ref,event=branch,suffix=-snapshot



[ofbiz-framework] branch experimental-docker updated: Added: Experimenting with container tag gernation (OFBIZ-12757)

2023-03-01 Thread danwatford
This is an automated email from the ASF dual-hosted git repository.

danwatford pushed a commit to branch experimental-docker
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git


The following commit(s) were added to refs/heads/experimental-docker by this 
push:
 new 78b02e64b2 Added: Experimenting with container tag gernation 
(OFBIZ-12757)
78b02e64b2 is described below

commit 78b02e64b20bbea213a5a580119ecf9a8a48e57f
Author: Daniel Watford 
AuthorDate: Wed Mar 1 15:44:54 2023 +

Added: Experimenting with container tag gernation (OFBIZ-12757)

Building of docker images has been deliberately removed to prevent
wasted builds while experimenting with tag generation in GH Actions.
---
 .github/workflows/docker-image.yaml | 25 -
 1 file changed, 16 insertions(+), 9 deletions(-)

diff --git a/.github/workflows/docker-image.yaml 
b/.github/workflows/docker-image.yaml
index 54e2178011..e702aa527e 100644
--- a/.github/workflows/docker-image.yaml
+++ b/.github/workflows/docker-image.yaml
@@ -33,14 +33,21 @@ jobs:
 
 - name: Extract metadata (tags, labels) for Docker
   id: meta
-  uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
+  uses: docker/metadata-action@507c2f2dc502c992ad446e3d7a5dfbe311567a96
   with:
-images: apache/ofbiz-framework
+images: ghcr.io/apache/ofbiz-framework
+tags: |
+  # When this build is triggered by pusing a git tag, use the string 
following 'release' as the container tag
+  # value.
+  type=match,pattern=release(.*)
+  # When this build is triggered by pushing to a branch, use the 
branch name with the suffix '-snapshot' as the
+  # container tag value.
+  type=ref,event=branch,suffix=-snapshot
 
-- name: Build Docker image
-  uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
-  with:
-context: .
-push: false
-tags: ${{ steps.meta.outputs.tags }}
-labels: ${{ steps.meta.outputs.labels }}
+#- name: Build Docker image
+#  uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
+#  with:
+#context: .
+#push: false
+#tags: ${{ steps.meta.outputs.tags }}
+#labels: ${{ steps.meta.outputs.labels }}