mirror of
https://gitea.com/actions/cache.git
synced 2024-11-10 22:42:28 +08:00
added stateprovider changes
This commit is contained in:
parent
91d7bd61be
commit
c0cc8dd60a
|
@ -1,6 +1,6 @@
|
||||||
import * as core from "@actions/core";
|
import * as core from "@actions/core";
|
||||||
|
|
||||||
import { State, stateToOutputMap } from "./constants";
|
import { Outputs, State } from "./constants";
|
||||||
|
|
||||||
export interface IStateProvider {
|
export interface IStateProvider {
|
||||||
setState(key: string, value: string): void;
|
setState(key: string, value: string): void;
|
||||||
|
@ -33,8 +33,13 @@ export class StateProvider extends StateProviderBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
export class NullStateProvider extends StateProviderBase {
|
export class NullStateProvider extends StateProviderBase {
|
||||||
|
stateToOutputMap = new Map<string, string>([
|
||||||
|
[State.CacheMatchedKey, Outputs.CacheRestoreKey],
|
||||||
|
[State.CachePrimaryKey, Outputs.CachePrimaryKey]
|
||||||
|
]);
|
||||||
|
|
||||||
setState = (key: string, value: string) => {
|
setState = (key: string, value: string) => {
|
||||||
core.setOutput(stateToOutputMap.get(key) as string, value);
|
core.setOutput(this.stateToOutputMap.get(key) as string, value);
|
||||||
};
|
};
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||||
getState = (key: string) => "";
|
getState = (key: string) => "";
|
||||||
|
|
Loading…
Reference in New Issue
Block a user