Skip to content

Commit

Permalink
fix variable name (#570)
Browse files Browse the repository at this point in the history
  • Loading branch information
jfcoz committed Sep 13, 2024
1 parent e5aa762 commit eec7a45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
- name: HELM Deploy
run: |
set -o pipefail
if ! helm status $RELEASE_NAME &>/dev/null; then
if ! helm -n ${{ env.NAMESPACE }} status ${{ env.RELEASE_NAME }} &>/dev/null; then
JWT_PASSPHRASE=$(openssl rand -base64 32)
JWT_SECRET_KEY=$(openssl genpkey -pass file:<(echo "$JWT_PASSPHRASE") -aes256 -algorithm rsa -pkeyopt rsa_keygen_bits:4096)
helm upgrade ${{ env.RELEASE_NAME }} ./helm/api-platform \
Expand Down

0 comments on commit eec7a45

Please sign in to comment.