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.
1 parent 588fb9d commit 044e281Copy full SHA for 044e281
.github/workflows/python-builder.yml
@@ -44,7 +44,7 @@ jobs:
44
foreach ($configuration in $configurations) {
45
$parts = $configuration.Split("_")
46
$os = $parts[0]
47
- $arch = $(if ($parts[1]) {$parts[1]} else {"x64"})
+ $arch = if ($parts[1]) {$parts[1]} else {"x64"}
48
switch -wildcard ($os) {
49
"*ubuntu*" { $platform = $os.Replace("ubuntu","linux")}
50
"*macos*" { $platform = 'darwin' }
0 commit comments