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

janardhan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/systemds.git


The following commit(s) were added to refs/heads/main by this push:
     new 32295ca9dc [SYSTEMDS-3401] Release docker images with GitHub actions 
(#1656)
32295ca9dc is described below

commit 32295ca9dc734989e4a897c15a58a976c1aae54c
Author: Janardhan Pulivarthi <[email protected]>
AuthorDate: Tue Jul 5 22:48:46 2022 +0530

    [SYSTEMDS-3401] Release docker images with GitHub actions (#1656)
---
 .github/workflows/docker-release.yml | 78 ++++++++++++++++++++++++++++++++++++
 1 file changed, 78 insertions(+)

diff --git a/.github/workflows/docker-release.yml 
b/.github/workflows/docker-release.yml
new file mode 100644
index 0000000000..7ab1f4a83c
--- /dev/null
+++ b/.github/workflows/docker-release.yml
@@ -0,0 +1,78 @@
+#-------------------------------------------------------------
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+#-------------------------------------------------------------
+
+name: Docker Release Deployment
+
+on:
+  workflow_dispatch:
+    inputs:
+      branch_or_tag:
+        description: 'Version (branch/tag) of SystemDS to build from. For 
example, 3.0.0-rc2'
+        required: true
+        default: 'main'
+      version:
+        description: 'Version tag for the docker'
+        required: true
+        default: 'latest'
+  
+jobs:
+  build-release:
+    if: github.repository == 'apache/systemds'
+    runs-on: ubuntu-latest
+
+    steps:
+    - name: Checkout
+      uses: actions/checkout@v3
+      with:
+        ref: ${{ github.event.inputs.branch_or_tag }}
+
+    # https://github.com/docker/metadata-action
+    - name: Configure Docker metadata
+      id: meta
+      uses: docker/metadata-action@v4
+      with:
+        images: apache/systemds
+        tags: ${{ github.event.inputs.version }}
+
+    # https://github.com/docker/setup-buildx-action
+    - name: Set up Docker Buildx
+      id: buildx
+      uses: docker/setup-buildx-action@v2
+
+    # https://github.com/docker/login-action
+    - name: Login to DockerHub
+      if: github.event_name != 'pull_request'
+      uses: docker/login-action@v2
+      with:
+          username: ${{ secrets.DOCKERHUB_USER }}
+          password: ${{ secrets.DOCKERHUB_TOKEN }}
+
+    # https://github.com/docker/build-push-action
+    - name: Build and push
+      id: docker_build
+      uses: docker/build-push-action@v3
+      with:
+        context: .
+        file: ./docker/sysds.Dockerfile
+        push: false
+        tags: ${{ github.event.inputs.branch_or_tag }}
+#       Use the below labels entry for images for cpu, gpu for the same release
+#       labels: ${{ steps.meta.outputs.labels }}

Reply via email to