mirror of
https://code.forgejo.org/actions/cache.git
synced 2025-04-22 11:25:31 +00:00
Make sure ref is not null or empty
This commit is contained in:
parent
ccc66f769e
commit
2403bbedac
3 changed files with 3 additions and 3 deletions
|
@ -115,7 +115,7 @@ export async function resolvePaths(patterns: string[]): Promise<string[]> {
|
|||
// Cache token authorized for all events that are tied to a ref
|
||||
// See GitHub Context https://help.github.com/actions/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions#github-context
|
||||
export function isValidEvent(): boolean {
|
||||
return RefKey in process.env;
|
||||
return RefKey in process.env && Boolean(process.env[RefKey]);
|
||||
}
|
||||
|
||||
export function unlinkFile(path: fs.PathLike): Promise<void> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue