From aeef48c94fc153c49dddaac730a476ba1ad4120e Mon Sep 17 00:00:00 2001 From: Pietro Bolcato Date: Wed, 29 Nov 2023 07:54:04 -0600 Subject: [PATCH] Fix deploy gha --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 19883ff..af8c3f5 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -27,14 +27,14 @@ jobs: docker build . --tag ghcr.io/kittl/vectorizing:${{ github.ref_name }} docker push ghcr.io/kittl/vectorizing:${{ github.ref_name }} - name: Deploy vectorizing in staging cluster - uses: kodermax/kubectl-aws-eks@master + uses: kodermax/kubectl-aws-eks@main env: KUBE_CONFIG_DATA: ${{ secrets.KUBE_CONFIG }} if: github.ref_name == 'main' with: args: rollout restart deployment/vectorizing --context staging - name: Deploy vectorizing in production cluster - uses: kodermax/kubectl-aws-eks@master + uses: kodermax/kubectl-aws-eks@main env: KUBE_CONFIG_DATA: ${{ secrets.KUBE_CONFIG }} if: github.ref_name == 'production'