Drone plugins > WebDAV
term.svg

WebDAV

by vividboarder


The WebDAV plugin will allow pushing build artifacts to any WebDAV server, including Nextcloud or ownCloud.

Example

kind: pipeline
name: default

steps:
  - name: upload_debug
    image: vividboarder/drone-webdav
    settings:
      file: com.vividboarder.otbeta/build/outputs/apk/com.vividboarder.otbeta-debug.apk
      destination: https://my.nextcloud.com/remote.php/dav/files/vividboarder/Android/Apks/
      username: admin
      password: password

Properties

  • file

    stringrequired

    The path to the file to upload.

    Default: none

  • destination

    stringrequired

    The destination URL.

    Default: none

  • username

    stringrequired

    The username to authenticate with.

    Default: none

  • password

    stringoptional

    The password to authenticate with.

    Secret recommended

    Default: none