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'