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 7, 2023
1 parent bf22443 commit 6e40f72
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 @@ -57,7 +57,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 @@ -52,4 +52,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 @@ -154,6 +154,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 @@ -55,6 +55,7 @@ jobs:
debug: false
concurrent: true
arguments: |-
--show-version
build
--info
--stacktrace
Expand Down

0 comments on commit 6e40f72

Please sign in to comment.