Skip to content

docker-openmetadata-ingestion docker #181

docker-openmetadata-ingestion docker

docker-openmetadata-ingestion docker #181

# Copyright 2021 Collate
# Licensed 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-openmetadata-ingestion docker
on:
workflow_dispatch:
inputs:
docker_release_tag:
description: "Ingestion Docker Image Tag"
required: true
release_version:
description: "Provide the Release Version"
required: true
push_latest_tag_to_release:
description: "Mark this as latest tag as well ?"
type: boolean
jobs:
push_to_docker_hub:
runs-on: ubuntu-latest
steps:
- name: Check out the Repo
uses: actions/checkout@v4
- name: Prepare for Docker Build&Push
id: prepare
uses: ./.github/actions/prepare-for-docker-build-and-push
with:
image: openmetadata/ingestion
tag: ${{ inputs.docker_release_tag }}
push_latest: ${{ inputs.push_latest_tag_to_release }}
is_ingestion: true
release_version: ${{ inputs.release_version }}
dockerhub_username: ${{ secrets.DOCKERHUB_OPENMETADATA_USERNAME }}
dockerhub_token: ${{ secrets.DOCKERHUB_OPENMETADATA_TOKEN }}
- name: Build and push if event is workflow_dispatch and input is checked
env:
DOCKER_BUILD_NO_SUMMARY: true
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64,linux/arm64
push: false
tags: ${{ steps.prepare.outputs.tags }}
file: ./ingestion/Dockerfile