mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-15 13:10:44 +00:00

* feat: Enable Ingestion Docker Image Tags using meta step * feat: conditional latest tag * chore: use separator tags * chore: refactor use of metadata-action * test: disable push * chore: Add env `DOCKER_BUILD_NO_SUMMARY: true` * chore: Use flavor for `latest` tag * chore: Enable push of docker images to DockerHub
51 lines
1.8 KiB
YAML
51 lines
1.8 KiB
YAML
# 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-postgres-db docker
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
docker_release_tag:
|
|
description: "OpenMetadata PostgreSQL Docker Image Tag"
|
|
required: true
|
|
push_latest_tag_to_release:
|
|
description: "Do you want to update docker image 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/postgresql
|
|
tag: ${{ inputs.docker_release_tag }}
|
|
push_latest: ${{ inputs.push_latest_tag_to_release }}
|
|
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
|
|
uses: docker/build-push-action@v6
|
|
env:
|
|
DOCKER_BUILD_NO_SUMMARY: true
|
|
with:
|
|
context: .
|
|
platforms: linux/amd64,linux/arm64
|
|
push: true
|
|
tags: ${{ steps.prepare.outputs.tags }}
|
|
file: ./docker/postgresql/Dockerfile_postgres
|