Skip to content

Commit ba430f9

Browse files
committed
Disable gpg check on windows
1 parent 062c051 commit ba430f9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/windows-install.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import * as path from "path";
66
import { ExecOptions, exec } from "@actions/exec";
77
import { System } from "./os";
88
import { swiftPackage, Package } from "./swift-versions";
9-
import { setupKeys, verify } from "./gpg";
9+
//import { setupKeys, verify } from "./gpg";
1010
import { setupVsTools } from "./visual-studio";
1111

1212
export async function install(version: string, system: System) {
@@ -21,10 +21,10 @@ export async function install(version: string, system: System) {
2121
if (swiftPath === null || swiftPath.trim().length == 0) {
2222
core.debug(`No cached installer found`);
2323

24-
await setupKeys(system);
24+
//await setupKeys(system);
2525

2626
let { exe, signature } = await download(swiftPkg);
27-
await verify(signature, exe);
27+
//await verify(signature, exe);
2828

2929
const exePath = await toolCache.cacheFile(
3030
exe,

0 commit comments

Comments
 (0)