There was an error while loading. Please reload this page.
1 parent 2d9483f commit d2c183cCopy full SHA for d2c183c
1 file changed
.github/workflows/release.yaml
@@ -90,7 +90,9 @@ jobs:
90
91
# Parse artifactPaths to extract .exe and .msi files
92
$artifactPaths = "${{ steps.tauri.outputs.artifactPaths }}"
93
- $paths = $artifactPaths -split ','
+
94
+ # Parse as JSON array
95
+ $paths = $artifactPaths | ConvertFrom-Json
96
97
# Extract .exe and .msi files (excluding .sig and .zip files)
98
$exeFiles = $paths | Where-Object { $_ -match '\.exe$' } | Where-Object { $_ -notmatch '\.(sig|zip)$' }
0 commit comments