From a14d29db878183b43e0eb85f3e2169fa1281b65c Mon Sep 17 00:00:00 2001 From: Raphael Hagen Date: Tue, 10 Sep 2024 18:21:04 -0600 Subject: [PATCH] nit --- .github/workflows/deploy_recipe.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy_recipe.yaml b/.github/workflows/deploy_recipe.yaml index 22a10a0..481d38c 100644 --- a/.github/workflows/deploy_recipe.yaml +++ b/.github/workflows/deploy_recipe.yaml @@ -34,17 +34,19 @@ jobs: - name: Get service account for beam id: get-account - run: echo "SA_EMAIL=$(gcloud config get-value account)" >> $GITHUB_OUTPUT + run: | + echo "SA_EMAIL=$(gcloud config get-value account)" >> $GITHUB_OUTPUT + echo $SA_EMAIL - name : "Deploy Beam pipeline" run: | python feedstock/recipe.py \ + --runner DataflowRunner \ --project leap-pangeo \ --service_account_email $SA_EMAIL \ - --job_name $JOB_NAME + --job_name $JOB_NAME \ --region us-central1 \ - --runner DataflowRunner \ --machine-type n1-highmem-2 \ --max_num_workers 10 \