File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3838 run : |
3939 version=`dasel -r toml -f gradle/libs.versions.toml versions.processor`
4040 echo "BUILD_VERSION=${version#projectVersion=}" >> $GITHUB_ENV
41+ echo "MULTILINE=line 1\nline 2\nline 3\n" >> $GITHUB_ENV
4142 cat $GITHUB_ENV
4243
4344 - name : actor
Original file line number Diff line number Diff line change @@ -24,6 +24,12 @@ tasks.named("build") {
2424 dependsOn (" jacocoLogAggregatedCoverage" )
2525}
2626
27+ fun properties (key : String ): Provider <String > = providers.gradleProperty(key)
28+ fun environment (key : String ): Provider <String > = providers.environmentVariable(key)
29+
30+ val multiline = environment(" MULTiLINE" )
31+ print (" multiline ($multiline )" )
32+
2733extra[" publishUser" ] = buildProperty(" PUBLISH_USER" )
2834extra[" publishKey" ] = buildProperty(" PUBLISH_KEY" )
2935val publishUser: String by extra
You can’t perform that action at this time.
0 commit comments