Skip to content

Commit 8f153f9

Browse files
Mounika-2311claude
andcommitted
fix: add kubectl setup step to rc/stage workflows
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent c1773b5 commit 8f153f9

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/deploy-rc.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ jobs:
4040
- name: Checkout code
4141
uses: actions/checkout@v4
4242

43+
- name: Setup kubectl
44+
uses: azure/setup-kubectl@v3
45+
4346
- name: Login to Registry
4447
run: |
4548
echo "${{ secrets.PROD_REGISTRY_PASSWORD }}" | docker login $REGISTRY -u ${{ secrets.PROD_REGISTRY_USERNAME }} --password-stdin

.github/workflows/deploy-stage.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ jobs:
4040
- name: Checkout code
4141
uses: actions/checkout@v4
4242

43+
- name: Setup kubectl
44+
uses: azure/setup-kubectl@v3
45+
4346
- name: Login to Registry
4447
run: |
4548
echo "${{ secrets.PROD_REGISTRY_PASSWORD }}" | docker login $REGISTRY -u ${{ secrets.PROD_REGISTRY_USERNAME }} --password-stdin

0 commit comments

Comments
 (0)