File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1068,27 +1068,27 @@ fun JobBuilder<*>.verifyCommandResult(
10681068 )
10691069}
10701070
1071- val Step .successCondition
1071+ val Step < * > .successCondition
10721072 get() = """
10731073 always()
10741074 && (${outcome.eq(Success )} )
10751075 """ .trimIndent()
10761076
1077- val Step .successOnAlpineCondition
1077+ val Step < * > .successOnAlpineCondition
10781078 get() = """
10791079 always()
10801080 && (${outcome.eq(Success )} )
10811081 && (matrix.distribution.user-id == 'Alpine')
10821082 """ .trimIndent()
10831083
1084- val Step .successNotOnUbuntu2404Condition
1084+ val Step < * > .successNotOnUbuntu2404Condition
10851085 get() = """
10861086 always()
10871087 && (${outcome.eq(Success )} )
10881088 && (matrix.distribution.user-id != 'Ubuntu-24.04')
10891089 """ .trimIndent()
10901090
1091- fun Step.getSuccessNotOnDistributionCondition (i : Int , distribution : String ) = """
1091+ fun Step < * > .getSuccessNotOnDistributionCondition (i : Int , distribution : String ) = """
10921092 always()
10931093 && (${outcome.eq(Success )} )
10941094 && (matrix.distributions.distribution$i .user-id != '$distribution ')
Original file line number Diff line number Diff line change 1515 */
1616
1717@file:Repository(" https://repo.maven.apache.org/maven2/" )
18- @file:DependsOn(" io.github.typesafegithub:github-workflows-kt:2.3 .0" )
18+ @file:DependsOn(" io.github.typesafegithub:github-workflows-kt:3.0 .0" )
1919
2020import io.github.typesafegithub.workflows.domain.Concurrency
2121import io.github.typesafegithub.workflows.domain.triggers.Trigger
You can’t perform that action at this time.
0 commit comments