update inputs

This commit is contained in:
Trym Lund Flogard 2021-06-02 15:20:58 +02:00
parent 5705c5cf8a
commit 14bae781e0
2 changed files with 4 additions and 1 deletions

View File

@ -8,6 +8,9 @@ inputs:
path: path:
description: 'A file, directory or wildcard pattern that describes what to upload' description: 'A file, directory or wildcard pattern that describes what to upload'
required: true required: true
nextcloud-url:
description: 'The URL for the nextcloud server'
required: true
if-no-files-found: if-no-files-found:
description: > description: >
The desired behavior if no files are found using the provided path. The desired behavior if no files are found using the provided path.

View File

@ -15,7 +15,7 @@ export class Inputs {
} }
static get Endpoint(): string { static get Endpoint(): string {
return core.getInput("retention-days"); return core.getInput("nextcloud-url");
} }
static get NoFileBehvaior(): NoFileOption { static get NoFileBehvaior(): NoFileOption {