File tree Expand file tree Collapse file tree 3 files changed +1
-3
lines changed Expand file tree Collapse file tree 3 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import { LayerCache } from './src/LayerCache'
44import { ImageDetector } from './src/ImageDetector'
55
66const main = async ( ) => {
7- // const repotag = core.getInput(`repotag`, { required: true })
87 const primaryKey = core . getInput ( `key` , { required : true } )
98 const restoreKeys = core . getInput ( `restore-keys` , { required : false } ) . split ( `\n` ) . filter ( key => key !== `` )
109
Original file line number Diff line number Diff line change 11import * as core from '@actions/core'
2- import exec from 'actions-exec-listener'
32
43import { LayerCache } from './src/LayerCache'
54import { ImageDetector } from './src/ImageDetector'
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ export function assertManifests(x: unknown): asserts x is Manifests {
1414}
1515
1616export async function loadRawManifests ( path : string ) {
17- return ( await fs . readFile ( `${ path } /manifests .json` ) ) . toString ( )
17+ return ( await fs . readFile ( `${ path } /manifest .json` ) ) . toString ( )
1818}
1919export async function loadManifests ( path : string ) {
2020 const raw = await loadRawManifests ( path )
You can’t perform that action at this time.
0 commit comments