mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-12-30 00:48:52 +00:00
* Bump Pom Version to 1.3.0-SNAPSHOT * chore: Fix Makefile recipe * fix: Prepare Main Branch for Next Feature Release * fix: Syntax issue --------- Co-authored-by: Akash-Jain <Akash.J@deuexsolutions.com>
171 lines
6.2 KiB
YAML
171 lines
6.2 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-server release app
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
DOCKER_RELEASE_TAG:
|
|
description: "Docker Release Tag"
|
|
required: true
|
|
push_latest_tag_to_release:
|
|
description: "Do you want to update docker image latest tag as well ?"
|
|
type: boolean
|
|
release:
|
|
types: [published]
|
|
jobs:
|
|
maven-build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up JDK 17
|
|
uses: actions/setup-java@v3
|
|
with:
|
|
java-version: 17
|
|
distribution: 'temurin'
|
|
|
|
- name: Install antlr cli
|
|
run: |
|
|
sudo make install_antlr_cli
|
|
|
|
- name: Setup jq
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install jq
|
|
|
|
- name: Build OpenMetadata Server Application
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: |
|
|
mvn -DskipTests clean package
|
|
|
|
- name: Upload OpenMetadata application to Artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: openmetadata-binary
|
|
path: /home/runner/work/OpenMetadata/OpenMetadata/openmetadata-dist/target/*.tar.gz
|
|
|
|
release-project-event-release:
|
|
if: github.event_name == 'release'
|
|
name: Release app with release event
|
|
runs-on: ubuntu-latest
|
|
needs: maven-build
|
|
steps:
|
|
- name: Check trigger type
|
|
id: check_trigger
|
|
run: echo "DOCKER_RELEASE_TAG=1.3.0-SNAPSHOT" >> $GITHUB_OUTPUT
|
|
|
|
- name: Download application from Artifiact
|
|
uses: actions/download-artifact@v2
|
|
with:
|
|
name: openmetadata-binary
|
|
|
|
- name: Get release data
|
|
id: get_release
|
|
uses: bruceadams/get-release@v1.3.2
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Upload app tar to Github Release
|
|
uses: actions/upload-release-asset@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
upload_url: ${{ steps.get_release.outputs.upload_url }}
|
|
asset_path: ./openmetadata-${{ steps.check_trigger.outputs.DOCKER_RELEASE_TAG }}.tar.gz
|
|
asset_name: openmetadata-${{ steps.check_trigger.outputs.DOCKER_RELEASE_TAG }}.tar.gz
|
|
asset_content_type: application/tar.gz
|
|
|
|
release-project-event-workflow_dispatch:
|
|
if: github.event_name == 'workflow_dispatch'
|
|
name: Release app with workflow_dispatch event
|
|
runs-on: ubuntu-latest
|
|
needs: maven-build
|
|
steps:
|
|
|
|
- name: Fetch Release Data
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
id: attach_release
|
|
run: |
|
|
echo "UPLOAD_URL=$(curl -H "Accept: application/vnd.github+json" -H "Authorization: Bearer $GITHUB_TOKEN" -H "X-GitHub-Api-Version: 2022-11-28" https://api.github.com/repos/open-metadata/OpenMetadata/releases/tags/${{ inputs.DOCKER_RELEASE_TAG }}-release | jq .upload_url | tr -d '"' )" >> $GITHUB_OUTPUT
|
|
|
|
- name: Download application from Artifact
|
|
uses: actions/download-artifact@v2
|
|
with:
|
|
name: openmetadata-binary
|
|
|
|
- name: Upload app to release
|
|
uses: actions/upload-release-asset@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
asset_path: ./openmetadata-${{ inputs.DOCKER_RELEASE_TAG }}.tar.gz
|
|
upload_url: ${{ steps.attach_release.outputs.UPLOAD_URL }}
|
|
asset_name: openmetadata-${{ inputs.DOCKER_RELEASE_TAG }}.tar.gz
|
|
asset_content_type: application/tar.gz
|
|
|
|
push_to_docker_hub:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
DOCKER_RELEASE_TAG: ${{ github.event.inputs.DOCKER_RELEASE_TAG }}
|
|
if: ${{ always() && contains(join(needs.*.result, ','), 'success') }}
|
|
needs: [release-project-event-workflow_dispatch, release-project-event-release]
|
|
steps:
|
|
- name: Set build arguments
|
|
run: |
|
|
echo "BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_ENV
|
|
- name: Check trigger type
|
|
id: check_trigger
|
|
if: ${{ env.DOCKER_RELEASE_TAG == '' }}
|
|
run: echo "DOCKER_RELEASE_TAG=1.3.0-SNAPSHOT" >> $GITHUB_ENV
|
|
|
|
- name: Check out the Repo
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v2
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_OPENMETADATA_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_OPENMETADATA_TOKEN }}
|
|
|
|
- name: Process Docker Tags
|
|
id: input_check
|
|
run: |
|
|
if ${{ github.event_name == 'release' }}; then
|
|
echo "tags=openmetadata/server:${{ env.DOCKER_RELEASE_TAG }},openmetadata/server:latest" >> $GITHUB_OUTPUT
|
|
elif ${{ github.event_name == 'workflow_dispatch' && inputs.push_latest_tag_to_release }}; then
|
|
echo "tags=openmetadata/server:${{ env.DOCKER_RELEASE_TAG }},openmetadata/server:latest" >> $GITHUB_OUTPUT
|
|
else
|
|
echo "tags=openmetadata/server:${{ env.DOCKER_RELEASE_TAG }}" >> $GITHUB_OUTPUT
|
|
fi
|
|
|
|
- name: Build and push if event is workflow_dispatch and input is checked
|
|
uses: docker/build-push-action@v3
|
|
with:
|
|
context: .
|
|
platforms: linux/amd64,linux/arm64
|
|
push: ${{ github.event_name == 'release' || github.event_name == 'workflow_dispatch' }}
|
|
tags: ${{ steps.input_check.outputs.tags }}
|
|
file: ./docker/docker-compose-quickstart/Dockerfile
|
|
build-args: |
|
|
BUILD_DATE=${{ env.BUILD_DATE }}
|
|
COMMIT_ID=${{ env.github.sha }}
|