Skip to content

Commit

Permalink
Merge pull request #33 from Knerio/feat/remove-mock-bukkit
Browse files Browse the repository at this point in the history
fix workflow trigger and release job
  • Loading branch information
Knerio authored Jun 7, 2024
2 parents 8ee4f29 + 7fedeae commit a208f8d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
push:
branches:
- main
workflow_run:
workflows: [ "update-readme" ]
types:
- completed

concurrency:
group: wiki
Expand Down
12 changes: 7 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ subprojects {
apply(plugin = "maven-publish")

group = "de.derioo.javautils"
version = "2.3.0"
version = "2.3.1"

repositories {
mavenCentral()
Expand Down Expand Up @@ -66,15 +66,17 @@ subprojects {
register<MavenPublication>("gpr") {
groupId = "$group"
version = "$version"
artifact(tasks["shadowJar"])
artifact(tasks["sourcesJar"])
artifact(tasks.named<ShadowJar>("shadowJar").get())
artifact(tasks.named<Jar>("sourcesJar").get())
}
}
}

tasks.test {
useJUnitPlatform()
}
}


tasks.named("publishGprPublicationToReposiliteRepository") {
dependsOn(tasks.named("jar"))
}
}

0 comments on commit a208f8d

Please sign in to comment.