Skip to content

Commit

Permalink
fix: turn redis db env var into string (#434)
Browse files Browse the repository at this point in the history
  • Loading branch information
vncsna authored Oct 9, 2023
1 parent c3d814a commit bea530c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
- name: "BASE_URL_API"
value: "https://development.api.basedosdados.org"
- name: "REDIS_DB"
value: 1
value: "1"
envFrom:
- secretRef:
name: api-development-secrets
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
- name: "BASE_URL_API"
value: "https://api.basedosdados.org"
- name: "REDIS_DB"
value: 1
value: "1"
envFrom:
- secretRef:
name: api-prod-secrets
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd-staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
- name: "BASE_URL_API"
value: "https://staging.api.basedosdados.org"
- name: "REDIS_DB"
value: 1
value: "1"
envFrom:
- secretRef:
name: api-staging-secrets
Expand Down

0 comments on commit bea530c

Please sign in to comment.