Commit 63d72b9
authored
fix(ci): PowerShell variable-reference parse error in Windows verify (#201)
The 'Verify windows-latest' step in the release workflow failed on the
v0.7.3 tag with a PowerShell ParserError:
Variable reference is not valid. ':' was not followed by a valid
variable name character. Consider using ${} to delimit the name.
PowerShell treats $archive: as scoped-variable syntax (like $env:PATH),
so the throw-message string interpolation broke. Wrap the interpolated
variables in ${} explicitly.
The v0.7.3 release itself is unaffected — goreleaser published all 13
assets correctly. This fix prevents the same failure on future releases.1 parent b049d98 commit 63d72b9
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
129 | 129 | | |
130 | 130 | | |
131 | 131 | | |
132 | | - | |
| 132 | + | |
133 | 133 | | |
134 | 134 | | |
135 | 135 | | |
| |||
0 commit comments