mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2026-01-07 13:07:22 +00:00
* Update airflow-apis-tests-3_9.yml Updated workflows to run on main branch and also on all release branches * Update cypress-integration-tests-mysql.yml Updated workflows to run on main branch and also on all release branches * Update cypress-integration-tests-postgresql.yml Updated workflows to run on main branch and also on all release branches * Update docs-tests.yml Updated workflows to run on main branch and also on all release branches * Update java-checkstyle.yml Updated workflows to run on main branch and also on all release branches * Update maven-build.yml Updated workflows to run on main branch and also on all release branches * Update openmetadata-ingestion-core-version-comment.yml Updated workflows to run on main branch and also on all release branches * Update py-checkstyle.yml Updated workflows to run on main branch and also on all release branches * Update py-generate.yml Updated workflows to run on main branch and also on all release branche * Update py-ingestion-core-publish.yml Updated workflows to run on main branch and also on all release branches * Update py-tests.yml Updated workflows to run on main branch and also on all release branches * Update selenium-noIngestion-tests.yml Updated workflows to run on main branch and also on all release branches * Update sync-docs.yml Updated workflows to run on main branch and also on all release branches * Update yarn-coverage.yml Updated workflows to run on main branch and also on all release branches * Update airflow-apis-tests-3_9.yml Updated workflows to run on main branch and also on all release branches * Update cypress-integration-tests-mysql.yml Updated workflows to run on main branch and also on all release branches * Update cypress-integration-tests-postgresql.yml Updated workflows to run on main branch and also on all release branches * Update docs-tests.yml Updated workflows to run on main branch and also on all release branches * Update java-checkstyle.yml Updated workflows to run on main branch and also on all release branches * Update maven-build.yml Updated workflows to run on main branch and also on all release branches * Update openmetadata-ingestion-core-version-comment.yml Updated workflows to run on main branch and also on all release branches * Update py-checkstyle.yml Updated workflows to run on main branch and also on all release branches * Update py-tests.yml Updated workflows to run on main branch and also on all release branches * Update selenium-noIngestion-tests.yml Updated workflows to run on main branch and also on all release branches * Update sync-docs.yml Updated workflows to run on main branch and also on all release branches
50 lines
1.7 KiB
YAML
50 lines
1.7 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.
|
|
|
|
# When a new push happens to the main branch that
|
|
# modifies the JSON Schemas, we are going to
|
|
# generate the updated pydantic models and
|
|
# publish a new version of openmetadata-core
|
|
|
|
name: Publish openmetadata-ingestion-core packages
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- '0.[0-9]+.[0-9]+'
|
|
paths:
|
|
- 'openmetadata-service/src/main/resources/json/schema/**'
|
|
- 'ingestion-core/src/metadata/_version.py'
|
|
|
|
concurrency:
|
|
group: py-ingestion-core-publish-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
jobs:
|
|
py-core-build-and-push:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python 3.9
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.9
|
|
- name: Install Ubuntu related dependencies
|
|
run: |
|
|
sudo apt-get install -y libsasl2-dev unixodbc-dev python3-venv
|
|
- name: Install, Generate and Publish Test PyPi packages
|
|
env:
|
|
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME_TEST }}
|
|
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD_TEST }}
|
|
run: |
|
|
sudo make install_antlr_cli
|
|
make core_publish
|