Skip to content

Commit

Permalink
fix(gcp-functions): Correct schema type for 'secrets' in deploy execu…
Browse files Browse the repository at this point in the history
…tor (#356)
  • Loading branch information
TriPSs authored Jan 10, 2025
2 parents a0f763b + 42b0aa4 commit 2267181
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions packages/gcp-functions/src/executors/deploy/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,13 @@
"type": "number"
},
"secrets": {
"type": [
"object",
"stringArray"
"oneOf": [
{
"type": "array"
},
{
"type": "object"
}
]
}
}
Expand Down

0 comments on commit 2267181

Please sign in to comment.