setup-miniconda
    Preparing search index...

    Interface IInstallerProvider

    A strategy for ensuring a locally-runnable provider (or no-op, if bundled).

    interface IInstallerProvider {
        installerPath: (
            inputs: IActionInputs,
            options: IDynamicOptions,
        ) => Promise<IInstallerResult>;
        label: string;
        provides: (
            inputs: IActionInputs,
            options: IDynamicOptions,
        ) => Promise<boolean>;
    }
    Index

    Properties

    installerPath: (
        inputs: IActionInputs,
        options: IDynamicOptions,
    ) => Promise<IInstallerResult>

    Provide the local file path (and any updated options) for the installer.

    label: string

    A human-readable name shown in logs.

    provides: (inputs: IActionInputs, options: IDynamicOptions) => Promise<boolean>

    Whether this set of actions and inputs entails using this provider.