Merge branch 'master' into master #1
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 Deploy Orchestrator | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
paths: | |
- "airbyte-ci/connectors/metadata_service/orchestrator/**" | |
jobs: | |
connector_metadata_service_deploy_orchestrator: | |
name: Connector metadata service deploy orchestrator | |
runs-on: ci-runner-connector-test-large-dagger-0-6-4 | |
steps: | |
- name: Checkout Airbyte | |
uses: actions/checkout@v2 | |
- name: Deploy the metadata orchestrator | |
id: metadata-orchestrator-deploy-orchestrator-pipeline | |
uses: ./.github/actions/run-dagger-pipeline | |
with: | |
subcommand: "metadata deploy orchestrator" | |
context: "master" | |
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 }} | |
tailscale_auth_key: ${{ secrets.TAILSCALE_AUTH_KEY }} | |
env: | |
DAGSTER_CLOUD_METADATA_API_TOKEN: ${{ secrets.DAGSTER_CLOUD_METADATA_API_TOKEN }} |