Skip to content

Commit

Permalink
fix: upload in yaml, allow array or string (deployphp#3551) (deployph…
Browse files Browse the repository at this point in the history
  • Loading branch information
pniederlag authored Mar 27, 2023
1 parent bf94c50 commit 91b73c0
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,17 @@
],
"properties": {
"src": {
"type": "string"
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"dest": {
"type": "string"
Expand Down

0 comments on commit 91b73c0

Please sign in to comment.