blob: 50c9426cdfe968ebab6fe7e34abe16fcb46296fc [file] [log] [blame]
#-------------------------------------------------------------
#
# 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: 'nightly'
jobs:
build-release:
if: github.repository == 'apache/systemds'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- run: git checkout ${{ 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 }},latest
labels: |
maintainer=Apache
org.opencontainers.image.title=SystemDS
org.opencontainers.image.description=An open source ML system for the end-to-end data science lifecycle
org.opencontainers.image.vendor=Apache
# 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@v4
with:
context: .
file: ./docker/sysds.Dockerfile
push: True
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}