Skip to content

Commit

Permalink
[#526] fix(wrapper-generator): fix reading 'actions' dir when suggest…
Browse files Browse the repository at this point in the history
…ing versions (#527)
  • Loading branch information
krzema12 committed Oct 29, 2022
1 parent 6e90134 commit de63379
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/actions-versions.main.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ workflow(
name = "Create issue",
action = CreateIssueFromFileV4(
title = "Updates available",
contentFilepath = "wrapper-generator/build/suggestVersions.md",
contentFilepath = "build/suggestVersions.md",
)
)
}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/actions-versions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ jobs:
uses: peter-evans/create-issue-from-file@v4
with:
title: Updates available
content-filepath: wrapper-generator/build/suggestVersions.md
content-filepath: build/suggestVersions.md
1 change: 1 addition & 0 deletions wrapper-generator/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ tasks.run.configure {
tasks.register<JavaExec>("suggestVersions") {
classpath = sourceSets["main"].runtimeClasspath
mainClass.set("it.krzeminski.githubactions.wrappergenerator.versions.SuggestVersionsKt")
workingDir = rootDir
dependsOn(tasks.compileKotlin)
}

Expand Down

0 comments on commit de63379

Please sign in to comment.