Skip to content

Commit 4267f37

Browse files
committed
Drop no longer necessary hack
In d92e1c2 (HACK: drop invalid cached artifact, 2021-03-06), we added a hack to work around a particular, incorrectly cached `minimal` artifact. In the meantime, the bug was fixed, and a newer build is available, therefore that hack is no longer necessary. As it is no longer needed, let's drop it. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 83e0a6f commit 4267f37

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

main.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,7 @@ async function run(): Promise<void> {
3131

3232
let needToDownload = true
3333
try {
34-
if (
35-
'git-sdk-64-minimal-71789' !== id &&
36-
useCache &&
37-
(await restoreCache([outputDirectory], id))
38-
) {
34+
if (useCache && (await restoreCache([outputDirectory], id))) {
3935
core.info(`Cached ${id} was successfully restored`)
4036
needToDownload = false
4137
}

0 commit comments

Comments
 (0)