From e93dd2d865925b98ac9825570b8928047442978e Mon Sep 17 00:00:00 2001 From: Aarnav Tale Date: Tue, 6 Feb 2024 01:38:40 -0500 Subject: [PATCH] chore: turns out i cant indent --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 352d6a0..e7d5253 100644 --- a/README.md +++ b/README.md @@ -54,14 +54,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Configure AWS Credentials - uses: aws-actions/configure-aws-credentials@v4 - with: + 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 + 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: + with: base64-kube-config: ${{ env.EKS_CREDS }} - run: kubectl get pods ```