We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
MSYSTEM
1 parent 07cf1dc commit fe9e461Copy full SHA for fe9e461
.vscode/settings.json
@@ -8,6 +8,7 @@
8
"vstfs://.*"
9
],
10
"cSpell.words": [
11
+ "MSYSTEM",
12
"Pacman",
13
"autodrain",
14
"unzipper",
main.ts
@@ -25,6 +25,10 @@ async function run(): Promise<void> {
25
26
// Set up PATH so that Git for Windows' SDK's `bash.exe` is found
27
core.addPath(`${outputDirectory}/usr/bin`)
28
+ core.exportVariable(
29
+ 'MSYSTEM',
30
+ architecture === 'i686' ? 'MING32' : 'MINGW64'
31
+ )
32
} catch (error) {
33
core.setFailed(error.message)
34
}
0 commit comments