Skip to content

Commit f9167bf

Browse files
authored
Fix version-type
1 parent cb6716a commit f9167bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/actions/azdo-build/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ runs:
249249
250250
echo version=$VERSION | tee --append $GITHUB_OUTPUT
251251
252-
if [[ "$VERSION" == *-0 ]]; then echo version-type=prerelease | tee --append $GITHUB_OUTPUT; else echo version-type=production | tee --append $GITHUB_OUTPUT; fi
252+
if [[ "$VERSION" == *-* ]]; then echo version-type=prerelease | tee --append $GITHUB_OUTPUT; else echo version-type=production | tee --append $GITHUB_OUTPUT; fi
253253
shell: bash
254254
working-directory: ./artifact-download/tgzfiles
255255

0 commit comments

Comments
 (0)