From b15ba77d46ca25a451a236d400bd8ebaff910bdd Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Mon, 18 Mar 2024 17:19:47 +0530 Subject: [PATCH] Using github vars for workflow directory --- .github/workflows/production_deployment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/production_deployment.yml b/.github/workflows/production_deployment.yml index 4bcd824..4cb7ad3 100644 --- a/.github/workflows/production_deployment.yml +++ b/.github/workflows/production_deployment.yml @@ -36,7 +36,7 @@ jobs: - name: Update Image Tag run: | NEW_TAG="v$(git rev-parse --short HEAD)" - cd ${{ vars.PROD_DEPLOY_REPO }}/${{ secrets.EKS_CLUSTER_NAME }}/integrations + cd ${{ vars.PROD_DEPLOY_REPO }}/${{ vars.PROD_US1_DEPLOY_DIR }}/integrations kustomize edit set image docker.io/${{ secrets.DOCKERHUB_USERNAME }}/fyle_partner_dashboard-app=docker.io/${{ secrets.DOCKERHUB_USERNAME }}/fyle_partner_dashboard-app:$NEW_TAG - name: Commit and push changes