Skip to content

Commit f497409

Browse files
also check for CI_SYSTEM_VERSION when doing autodetection
Signed-off-by: Soc Virnyl Estela <[email protected]>
1 parent 19d1f3d commit f497409

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/deployconfig.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1120,7 +1120,7 @@ function auto_detect_deploy_system()
11201120
return GitLab()
11211121
elseif haskey(ENV, "BUILDKITE")
11221122
return Buildkite()
1123-
elseif haskey(ENV, "CI")
1123+
elseif haskey(ENV, "CI") && haskey(ENV, "CI_SYSTEM_VERSION")
11241124
return Woodpecker()
11251125
else
11261126
return nothing

0 commit comments

Comments
 (0)