Skip to content

Commit

Permalink
[patch] adding logging
Browse files Browse the repository at this point in the history
  • Loading branch information
robertfmurdock committed May 22, 2023
1 parent 29d509f commit 2afd6e1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ tasks {
val githubRepository = System.getenv("GITHUB_REPOSITORY")
commandLine(
"gh api --method POST -H \"Accept: application/vnd.github+json\" -H \"X-GitHub-Api-Version: 2022-11-28\" /repos/$githubRepository/releases -f tag_name='${tagger.version}' -f name='${tagger.version}' -f body='${tagger.version} -F draft=false -F prerelease=false -F generate_release_notes=false"
.split(" "),
.split(" ")
.also { println("release command = $it") },
)
}

Expand Down

0 comments on commit 2afd6e1

Please sign in to comment.