From bec22de6cdf4437d7965baee6d522efabaa5a9fd Mon Sep 17 00:00:00 2001 From: Aimee Barciauskas Date: Tue, 5 Mar 2024 11:56:26 -0800 Subject: [PATCH] Update job-runner.yaml --- .github/workflows/job-runner.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/job-runner.yaml b/.github/workflows/job-runner.yaml index 151c822..f5ee738 100644 --- a/.github/workflows/job-runner.yaml +++ b/.github/workflows/job-runner.yaml @@ -90,7 +90,7 @@ jobs: - name: update kubeconfig with cluster run: | - aws eks update-kubeconfig --name $EKS_CLUSTER_NAME --region ${{ secrets.GH_ACTIONS_AWS_REGION }} + aws eks update-kubeconfig --name ${{ vars.EKS_CLUSTER_NAME }} --region ${{ secrets.GH_ACTIONS_AWS_REGION }} - name: execute recipe on k8s cluster id: executejob @@ -125,7 +125,7 @@ jobs: FEEDSTOCK_SUBDIR: ${{ github.event.inputs.feedstock_subdir }} PRUNE_OPTION: ${{ github.event.inputs.prune }} PARALLELISM_OPTION: ${{ github.event.inputs.parallelism }} - OUTPUT_BUCKET: $OUTPUT_BUCKET + OUTPUT_BUCKET: ${{ vars.OUTPUT_BUCKET }} AUTH_MODE: ${{ github.event.inputs.auth_mode }} RESOURCE_PROFILE: ${{ github.event.inputs.resource_profile }} @@ -206,7 +206,7 @@ jobs: - name: update kubeconfig with cluster run: | - aws eks update-kubeconfig --name $EKS_CLUSTER_NAME --region ${{ secrets.GH_ACTIONS_AWS_REGION }} + aws eks update-kubeconfig --name ${{ vars.EKS_CLUSTER_NAME }} --region ${{ secrets.GH_ACTIONS_AWS_REGION }} # - name: Setup upterm session # uses: lhotari/action-upterm@v1