Skip to content

Commit

Permalink
fix: verbose token as coerced bool
Browse files Browse the repository at this point in the history
  • Loading branch information
djang0dev committed May 9, 2024
1 parent cdcd2d2 commit 6e33028
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/bunny.services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export class BunnyConfig extends Effect.Tag("BunnyConfig")<
.getOptionalInput({ inputId: "apiKey" })
.pipe(Effect.andThen(Option.getOrThrow)),
verbose: yield* actionGh
.getOptionalInput({ inputId: "verbose" })
.getCoercedBool({ inputId: "verbose" })
.pipe(Effect.andThen(Option.getOrElse(() => false))),
} as const
const decoded = yield* S.decodeUnknown(DeployerActionInput, {
Expand Down

0 comments on commit 6e33028

Please sign in to comment.