We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5585bbb commit 4401b7dCopy full SHA for 4401b7d
.github/workflows/helm.yml
@@ -74,12 +74,19 @@ jobs:
74
uses: actions/checkout@v3
75
76
- name: Configure AWS credentials
77
+ if: ${{ inputs.provider == 'aws' }}
78
uses: aws-actions/configure-aws-credentials@v1
79
with:
80
aws-access-key-id: ${{ secrets.aws-access-key-id }}
81
aws-secret-access-key: ${{ secrets.aws-secret-access-key }}
82
aws-region: ${{ inputs.aws-region }}
83
84
+ - name: Install Azure CLI
85
+ if: ${{ inputs.provider == 'azure' }}
86
+ uses: azure/login@v1
87
+ with:
88
+ creds: ${{ secrets.AZURE_CREDENTIALS }}
89
+
90
- name: Update Kubeconfig
91
run: |
92
if [ "${{ inputs.provider }}" = "azure" ]; then
0 commit comments