Skip to content

Commit

Permalink
Fix internal condition
Browse files Browse the repository at this point in the history
  • Loading branch information
Brooooooklyn committed Dec 14, 2023
1 parent 7217b60 commit 6e3f914
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/deploy/deploy.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const createHelmCommand = ({ isDryRun }) => {
const flag = isDryRun ? '--dry-run' : '--atomic';
const imageTag = `${buildType}-${GIT_SHORT_HASH}`;
const redisAndPostgres =
isProduction || isBeta
isProduction || isBeta || isInternal
? [
`--set-string global.database.url=${DATABASE_URL}`,
`--set-string global.database.user=${DATABASE_USERNAME}`,
Expand Down

0 comments on commit 6e3f914

Please sign in to comment.