chore(release): v1.0.0

This commit is contained in:
seepine
2023-08-02 00:39:45 +08:00
commit 8e2d3a87e1
29 changed files with 10636 additions and 0 deletions

12
src/constants.ts Normal file
View File

@@ -0,0 +1,12 @@
/* eslint-disable no-shadow */
export enum Inputs {
Workdir = 'workdir', // Input for cache, restore, save action
Patterns = 'patterns', // Input for cache, restore, save action
Gitignore = 'gitignore', // Input for cache, restore action
IgnoreFiles = 'ignoreFiles' // Input for cache, save action
}
export enum Outputs {
Hash = 'hash', // Output from cache, restore action
MatchedFiles = 'matched-files' // Output from restore action
}