Skip to content

Commit

Permalink
fix: Releasing flank-scripts (#1619)
Browse files Browse the repository at this point in the history
  • Loading branch information
piotradamczyk5 authored Feb 19, 2021
1 parent 13a8944 commit 5a49af5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release_flank_scripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ jobs:
- name: Gradle Upload to Github packages and Github release
uses: eskatos/gradle-command-action@v1
with:
arguments: "flank-scripts:releaseFlankScripts"
arguments: "flank-scripts:releaseFlankScripts -PGITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}"
8 changes: 4 additions & 4 deletions flank-scripts/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ shadowJar.apply {
}
}
// <breaking change>.<feature added>.<fix/minor change>
version = "1.6.4"
version = "1.6.5"
group = "com.github.flank"

application {
Expand Down Expand Up @@ -123,8 +123,8 @@ val download by tasks.registering(Exec::class) {
)
doLast {
Files.copy(
Paths.get( "$artifactID.jar"),
Paths.get("flank-scripts","bash", "$artifactID.jar")
Paths.get("$artifactID.jar"),
Paths.get("flank-scripts", "bash", "$artifactID.jar")
)
}
}
Expand Down Expand Up @@ -156,7 +156,7 @@ val releaseFlankScripts by tasks.registering(Exec::class) {
commandLine(
"gh", "release", "create",
"flank-scripts-$version", "$buildDir/libs/$artifactID.jar",
"-t", "'Flank Scripts $version'",
"-t", "Flank Scripts $version",
"-p"
)
}
Expand Down

0 comments on commit 5a49af5

Please sign in to comment.