feat(search): Also de-duplicate the field queries based on field name… #3151
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
name: metadata model generate | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- "docs/**" | |
- "**.md" | |
release: | |
types: [published] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
setup: | |
runs-on: ubuntu-latest | |
outputs: | |
publish: ${{ steps.publish.outputs.publish }} | |
steps: | |
- name: Check whether upload to datahub is enabled | |
id: publish | |
env: | |
ENABLE_PUBLISH: ${{ secrets.DataHubToken }} | |
run: | | |
echo "Enable publish: ${{ env.ENABLE_PUBLISH != '' }}" | |
echo "publish=${{ env.ENABLE_PUBLISH != '' }}" >> $GITHUB_OUTPUT | |
metadata-ingestion-docgen: | |
runs-on: ubuntu-latest | |
needs: setup | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: ./metadata-ingestion/scripts/install_deps.sh | |
- name: Run model generation | |
run: ./gradlew :metadata-models:build | |
- name: Upload metadata to DataHub | |
if: ${{ needs.setup.outputs.publish == 'true' }} | |
env: | |
DATAHUB_SERVER: ${{ secrets.DataHubServer }} | |
DATAHUB_TOKEN: ${{ secrets.DataHubToken }} | |
run: ./gradlew :metadata-ingestion:modelDocUpload |