Skip to content

Commit

Permalink
ci: fix gradle publish
Browse files Browse the repository at this point in the history
  • Loading branch information
titivermeesch committed Aug 7, 2024
1 parent dc2907c commit b8bb7f1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ jobs:
path: build/libs/commandtimer-java8.jar
- name: Publish package
run: gradle publish -b java8-build.gradle
continue-on-error: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Build-Deploy-Java-17:
Expand All @@ -62,6 +63,7 @@ jobs:
with:
path: build/libs/commandtimer-java17.jar
- name: Publish package
continue-on-error: true
run: gradle publish -b java17-build.gradle
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -82,6 +84,7 @@ jobs:
path: build/libs/commandtimer-java21.jar
- name: Publish package
run: gradle publish
continue-on-error: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Release:
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ publishing {
maven(MavenPublication) {
groupId = 'me.playbosswar.com'
artifactId = 'commandtimer-java21'
version = '8.7.4'
version = '8.7.5'

from components.java
}
Expand Down
2 changes: 1 addition & 1 deletion java17-build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ publishing {
maven(MavenPublication) {
groupId = 'me.playbosswar.com'
artifactId = 'commandtimer-java17'
version = '8.7.4'
version = '8.7.5'

from components.java
}
Expand Down
2 changes: 1 addition & 1 deletion java8-build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ publishing {
maven(MavenPublication) {
groupId = 'me.playbosswar.com'
artifactId = 'commandtimer-java8'
version = '8.7.4'
version = '8.7.5'

from components.java
}
Expand Down

0 comments on commit b8bb7f1

Please sign in to comment.