Skip to content

Commit d2c183c

Browse files
committed
You're absolutely right
1 parent 2d9483f commit d2c183c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/release.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,9 @@ jobs:
9090
9191
# Parse artifactPaths to extract .exe and .msi files
9292
$artifactPaths = "${{ steps.tauri.outputs.artifactPaths }}"
93-
$paths = $artifactPaths -split ','
93+
94+
# Parse as JSON array
95+
$paths = $artifactPaths | ConvertFrom-Json
9496
9597
# Extract .exe and .msi files (excluding .sig and .zip files)
9698
$exeFiles = $paths | Where-Object { $_ -match '\.exe$' } | Where-Object { $_ -notmatch '\.(sig|zip)$' }

0 commit comments

Comments
 (0)