mirror of
https://github.com/trympet/nextcloud-artifacts-action.git
synced 2025-07-12 13:15:39 +02:00
19 lines
317 B
TypeScript
19 lines
317 B
TypeScript
import { URL } from 'url'
|
|
import { NoFileOption } from './NoFileOption'
|
|
|
|
export interface Inputs {
|
|
readonly ArtifactName: string
|
|
|
|
readonly ArtifactPath: string
|
|
|
|
readonly Endpoint: URL
|
|
|
|
readonly Username: string
|
|
|
|
readonly Password: string
|
|
|
|
readonly Token: string
|
|
|
|
readonly NoFileBehvaior: NoFileOption
|
|
}
|