Skip to content

Commit

Permalink
Merge pull request #4 from fuseio/fix/ci-k8s
Browse files Browse the repository at this point in the history
fix(ci): fixed variable name conflict
  • Loading branch information
dzmitrykliapkou authored Jan 7, 2025
2 parents 906afa8 + acd4f8b commit 4beb4d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
REGISTRY_ENDPOINT: ${{ secrets.REGISTRY_ENDPOINT }}
REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }}
REGISTRY_PASSWORD: ${{ secrets.REGISTRY_PASSWORD }}
KUBECONFIG: ${{ secrets.KUBECONFIG }}
KUBECONFIG_FILE: ${{ secrets.KUBECONFIG }}
HELM_RELEASE_NAMESPACE: ${{ vars.HELM_RELEASE_NAMESPACE }}
HELM_RELEASE_NAME: ${{ vars.HELM_RELEASE_NAME }}
HELM_CHART_REPOSITORY: ${{ secrets.HELM_CHART_REPOSITORY }}
Expand All @@ -91,7 +91,7 @@ jobs:
- name: Configure Kubernetes config file
run: |
mkdir -p $HOME/.kube/
echo "${{ env.KUBECONFIG }}" | base64 -d > $HOME/.kube/config
echo "${{ env.KUBECONFIG_FILE }}" | base64 -d > $HOME/.kube/config
- name: Upgrade installed Helm chart release
run: |
Expand Down

0 comments on commit 4beb4d0

Please sign in to comment.