Skip to content

Commit

Permalink
Show version when running Gradle builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Vampire committed Feb 16, 2023
1 parent d7655c1 commit 32af37a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-dependency-versions.main.kts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ workflowWithCopyright(
uses(
name = "Check Dependency Versions",
action = GradleCacheActionV1(
arguments = listOf("dependencyUpdates"),
arguments = listOf("--show-version", "dependencyUpdates"),
debug = false,
concurrent = true
)
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/check-dependency-versions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,6 @@ jobs:
with:
debug: false
concurrent: true
arguments: dependencyUpdates
arguments: |-
--show-version
dependencyUpdates
1 change: 1 addition & 0 deletions .github/workflows/test.main.kts
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@ workflowWithCopyright(
name = "Build",
action = GradleCacheActionV1(
arguments = listOf(
"--show-version",
"build",
"--info",
"--stacktrace",
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ jobs:
debug: false
concurrent: true
arguments: |-
--show-version
build
--info
--stacktrace
Expand Down

0 comments on commit 32af37a

Please sign in to comment.