Upload versioned connector docs on publish #568
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
name: Connector Ops CI - Metadata Service Tests | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- "airbyte-ci/connectors/metadata_service/**" | |
jobs: | |
connector_metadata_service_ci: | |
name: Connector metadata service CI | |
runs-on: medium-runner | |
env: | |
CI_GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Checkout Airbyte | |
uses: actions/checkout@v2 | |
- name: Run test pipeline for the metadata lib | |
id: metadata-lib-test-pipeline | |
uses: ./.github/actions/run-dagger-pipeline | |
with: | |
subcommand: "metadata test lib" | |
context: "pull_request" | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
docker_hub_username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
docker_hub_password: ${{ secrets.DOCKER_HUB_PASSWORD }} | |
gcp_gsm_credentials: ${{ secrets.GCP_GSM_CREDENTIALS }} | |
- name: Run test for the metadata orchestrator | |
id: metadata-orchestrator-test-pipeline | |
uses: ./.github/actions/run-dagger-pipeline | |
with: | |
subcommand: "metadata test orchestrator" | |
context: "pull_request" | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
docker_hub_username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
docker_hub_password: ${{ secrets.DOCKER_HUB_PASSWORD }} | |
gcp_gsm_credentials: ${{ secrets.GCP_GSM_CREDENTIALS }} |