Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dda8170

Browse files
authored
fix(ci): fixed $vesrion being empty in packages.yaml (#5650)
1 parent 4f3ac95 commit dda8170

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/packages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
echo "Installer URL: $installer_url"
2828
2929
# The package version is the same as the tag minus the leading "v".
30-
$version = $env:CODER_VERSION -replace "^v", ""
30+
$version = $env:CODER_VERSION.Trim('v')
3131
3232
echo "Package version: $version"
3333

0 commit comments

Comments
 (0)