diff options
author | 2024-02-09 17:50:57 +0000 | |
---|---|---|
committer | 2024-02-09 17:51:05 +0000 | |
commit | 90f6e75b03d81fc2905dbd5d59ffe90fe10d7935 (patch) | |
tree | 0f77dee5eeff5013346e3b63623cff87d00cbe6f | |
parent | Change deploy workflow to test the new kubeconfig (diff) |
Update kubeconfig seret to be interpreted as a multi-line string
-rw-r--r-- | .github/workflows/build-deploy.yaml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/build-deploy.yaml b/.github/workflows/build-deploy.yaml index 87bba82..a0f935f 100644 --- a/.github/workflows/build-deploy.yaml +++ b/.github/workflows/build-deploy.yaml @@ -65,7 +65,8 @@ jobs: uses: azure/k8s-set-context@v3 with: method: kubeconfig - kubeconfig: ${{ secrets.TEST }} + kubeconfig: | + ${{ secrets.TEST }} - name: Deploy to Kubernetes uses: azure/k8s-deploy@v4 |