docker-openmetadata-server release app #255
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 | |
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-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 | |
if: ${{ always() && contains(join(needs.*.result, ','), 'success') }} | |
needs: [release-project-event-workflow_dispatch] | |
steps: | |
- name: Check out the Repo | |
uses: actions/checkout@v3 | |
- name: Set build arguments | |
run: | | |
echo "BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_ENV | |
- name: Prepare for Docker Build&Push | |
id: prepare | |
uses: ./.github/actions/prepare-for-docker-build-and-push | |
with: | |
image: openmetadata/server | |
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@v3 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: ${{ steps.prepare.outputs.tags }} | |
file: ./docker/docker-compose-quickstart/Dockerfile | |
build-args: | | |
BUILD_DATE=${{ env.BUILD_DATE }} | |
COMMIT_ID=${{ env.github.sha }} |