Skip to content

Commit

Permalink
[eas-build-job] allow secrets to be empty strings (#347)
Browse files Browse the repository at this point in the history
  • Loading branch information
szdziedzic authored Feb 26, 2024
1 parent 135d459 commit 5e4ddbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/eas-build-job/src/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export enum EnvironmentSecretType {
export const EnvironmentSecretsSchema = Joi.array().items(
Joi.object({
name: Joi.string().required(),
value: Joi.string().required(),
value: Joi.string().allow('').required(),
type: Joi.string()
.valid(...Object.values(EnvironmentSecretType))
.required(),
Expand Down

0 comments on commit 5e4ddbc

Please sign in to comment.