Astro Deploy #382
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: "Astro Deploy" | |
on: | |
# Since we have a job to test upstream RCs, and additionally our CI runs integrations tests on every PR, | |
# we can disable this scheduled job for now. In the future, in case we need to run this on schedule, we | |
# can enable it again by uncommenting the below schedule. | |
# schedule: | |
# - cron: '0 19 * * *' | |
workflow_dispatch: | |
inputs: | |
git_rev: | |
description: 'The git revision to deploy' | |
required: false | |
default: '' | |
environment_to_deploy: | |
description: 'astro cloud deployment to deploy to' | |
required: true | |
type: choice | |
options: | |
- both | |
- astro-sdk-integration-tests | |
- astro-sdk-integration-tests-on-KE | |
dags_to_trigger_after_deployment: | |
description: | | |
Comma separated list of dag_ids to trigger after deployment | |
(e.g. "example_mssql_transform, example_load_file") | |
required: false | |
type: string | |
default: '' | |
workflow_call: | |
inputs: | |
git_rev: | |
description: 'The git revision to deploy' | |
type: string | |
required: false | |
default: '' | |
environment_to_deploy: | |
description: 'astro cloud deployment to deploy to' | |
required: true | |
type: string | |
default: both | |
dags_to_trigger_after_deployment: | |
description: | | |
Comma separated list of dag_ids to trigger after deployment | |
(e.g. "example_mssql_transform, example_load_file") | |
required: false | |
type: string | |
default: '' | |
jobs: | |
deploy-to-astro-sdk-integration-tests: | |
if: | | |
contains(fromJSON('["both", "astro-sdk-integration-tests"]'), inputs.environment_to_deploy) || | |
github.event_name == 'schedule' | |
uses: ./.github/workflows/reuse-wf-deploy-to-astro-cloud.yaml | |
with: | |
git_rev: ${{ inputs.git_rev }} | |
environment_to_deploy: 'astro-sdk-integration-tests' | |
secrets: | |
docker_registry: ${{ secrets.ASTRO_DOCKER_REGISTRY }} | |
organization_id: ${{ secrets.ORGANIZATION_ID }} | |
deployment_id: ${{ secrets.ASTRO_DEPLOYMENT_ID }} | |
bearer_token: ${{ secrets.BEARER_TOKEN }} | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
GCP_SERVICE_ACCOUNT_JSON: ${{ secrets.GCP_SERVICE_ACCOUNT_JSON }} | |
wait-for-deployment-to-be-ready-and-trigger-dags-for-astro-sdk-integration-tests: | |
if: | | |
github.event_name == 'schedule' || | |
(github.event_name == 'workflow_dispatch' && inputs.dags_to_trigger_after_deployment != '') | |
needs: deploy-to-astro-sdk-integration-tests | |
uses: ./.github/workflows/reuse-wf-trigger-dag.yaml | |
with: | |
git_rev: ${{ inputs.git_rev }} | |
dags_to_trigger_after_deployment: ${{ inputs.dags_to_trigger_after_deployment }} | |
secrets: | |
astro_subdomain: ${{ secrets.ASTRO_SUBDOMAIN }} | |
deployment_id: ${{ secrets.ASTRO_DEPLOYMENT_ID }} | |
bearer_token: ${{ secrets.BEARER_TOKEN }} | |
organization_id: ${{ secrets.ORGANIZATION_ID }} | |
deploy-to-astro-sdk-integration-tests-on-KE: | |
if: | | |
contains(fromJSON('["both", "astro-sdk-integration-tests-on-KE"]'), inputs.environment_to_deploy) || | |
github.event_name == 'schedule' | |
uses: ./.github/workflows/reuse-wf-deploy-to-astro-cloud.yaml | |
with: | |
git_rev: ${{ inputs.git_rev }} | |
environment_to_deploy: 'astro-sdk-integration-tests-on-KE' | |
secrets: | |
docker_registry: ${{ secrets.ASTRO_DOCKER_REGISTRY }} | |
organization_id: ${{ secrets.ORGANIZATION_ID }} | |
deployment_id: ${{ secrets.ASTRO_DEPLOYMENT_ID_KE }} | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
bearer_token: ${{ secrets.BEARER_TOKEN }} | |
GCP_SERVICE_ACCOUNT_JSON: ${{ secrets.GCP_SERVICE_ACCOUNT_JSON }} | |
wait-for-deployment-to-be-ready-and-trigger-dags-for-astro-sdk-integration-tests-on-KE: | |
if: | | |
github.event_name == 'schedule' || | |
(github.event_name == 'workflow_dispatch' && inputs.dags_to_trigger_after_deployment != '') | |
needs: deploy-to-astro-sdk-integration-tests-on-KE | |
uses: ./.github/workflows/reuse-wf-trigger-dag.yaml | |
with: | |
git_rev: ${{ inputs.git_rev }} | |
dags_to_trigger_after_deployment: ${{ inputs.dags_to_trigger_after_deployment }} | |
secrets: | |
astro_subdomain: ${{ secrets.ASTRO_SUBDOMAIN }} | |
deployment_id: ${{ secrets.ASTRO_DEPLOYMENT_ID_KE }} | |
organization_id: ${{ secrets.ORGANIZATION_ID }} | |
bearer_token: ${{ secrets.BEARER_TOKEN }} |