From 9c4bb5002ac3cdb3acd212972bcb8fd98e7d0217 Mon Sep 17 00:00:00 2001 From: Aarnav Tale Date: Fri, 2 Feb 2024 14:31:45 -0500 Subject: [PATCH] chore: fix readme typo --- README.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 33a2223..352d6a0 100644 --- a/README.md +++ b/README.md @@ -50,18 +50,18 @@ on: workflow_dispatch: jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Configure AWS Credentials - uses: aws-actions/configure-aws-credentials@v4 - with: - role-to-assume: arn:aws:iam::123456789100:role/my-github-actions-role - aws-region: us-east-2 - - name: Generate kubeconfig - run: echo "EKS_CREDS=$(aws eks update-kubeconfig --region us-east-2 --name my-cluster --dry-run | base64) >> $GITHUB_ENV - - uses: tale/kubectl-action@v1 - with: - base64-kube-config: ${{ env.EKS_CREDS }} - - run: kubectl get pods - ``` + build: + runs-on: ubuntu-latest + steps: + - name: Configure AWS Credentials + uses: aws-actions/configure-aws-credentials@v4 + with: + role-to-assume: arn:aws:iam::123456789100:role/my-github-actions-role + aws-region: us-east-2 + - name: Generate kubeconfig + run: echo "EKS_CREDS=$(aws eks update-kubeconfig --region us-east-2 --name my-cluster --dry-run | base64) >> $GITHUB_ENV + - uses: tale/kubectl-action@v1 + with: + base64-kube-config: ${{ env.EKS_CREDS }} + - run: kubectl get pods +```