mirror of
https://github.com/trympet/nextcloud-artifacts-action.git
synced 2025-07-13 05:35:38 +02:00
add auth, sharing
This commit is contained in:
@ -18,6 +18,14 @@ export class Inputs {
|
||||
return core.getInput("nextcloud-url");
|
||||
}
|
||||
|
||||
static get Username(): string {
|
||||
return core.getInput("nextcloud-username");
|
||||
}
|
||||
|
||||
static get Password(): string {
|
||||
return core.getInput("nextcloud-password");
|
||||
}
|
||||
|
||||
static get NoFileBehvaior(): NoFileOption {
|
||||
const notFoundAction = core.getInput("if-no-files-found");
|
||||
const noFileBehavior: NoFileOption = NoFileOption[notFoundAction as keyof typeof NoFileOption];
|
||||
|
Reference in New Issue
Block a user