mirror of
https://github.com/trympet/nextcloud-artifacts-action.git
synced 2025-04-25 20:36:08 +02:00
update max content length
This commit is contained in:
parent
81238124ba
commit
7d73f7e889
@ -32,7 +32,8 @@ export class NextcloudClient {
|
|||||||
this.headers = { Authorization: 'Basic ' + Buffer.from(`${this.username}:${this.password}`).toString('base64') }
|
this.headers = { Authorization: 'Basic ' + Buffer.from(`${this.username}:${this.password}`).toString('base64') }
|
||||||
this.davClient = webdav.createClient(`${this.endpoint.href}remote.php/dav/files/${this.username}`, {
|
this.davClient = webdav.createClient(`${this.endpoint.href}remote.php/dav/files/${this.username}`, {
|
||||||
username: this.username,
|
username: this.username,
|
||||||
password: this.password
|
password: this.password,
|
||||||
|
maxBodyLength: 1024 ** 3
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user