From 8a56a0beec81ff621f0665abf89aac76ebcf03d2 Mon Sep 17 00:00:00 2001 From: Tristan Vermeesch Date: Fri, 13 Dec 2024 19:46:28 +0100 Subject: [PATCH] attemp to fix package publish --- .github/workflows/{deploy.yml => cd.yml} | 1 - .github/workflows/{test.yml => ci.yml} | 0 build.gradle | 2 +- 3 files changed, 1 insertion(+), 2 deletions(-) rename .github/workflows/{deploy.yml => cd.yml} (98%) rename .github/workflows/{test.yml => ci.yml} (100%) diff --git a/.github/workflows/deploy.yml b/.github/workflows/cd.yml similarity index 98% rename from .github/workflows/deploy.yml rename to .github/workflows/cd.yml index a8f47c3..e666507 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/cd.yml @@ -45,7 +45,6 @@ jobs: path: build/libs/commandtimer-java8.jar - name: Publish package run: gradle publish -b build.gradle - continue-on-error: true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} Build-Java-17: diff --git a/.github/workflows/test.yml b/.github/workflows/ci.yml similarity index 100% rename from .github/workflows/test.yml rename to .github/workflows/ci.yml diff --git a/build.gradle b/build.gradle index e9df596..3c41eea 100644 --- a/build.gradle +++ b/build.gradle @@ -69,7 +69,7 @@ publishing { publications { maven(MavenPublication) { groupId = 'me.playbosswar.com' - artifactId = 'commandtimer-java8' + artifactId = 'commandtimer' version = '8.11.2' from components.java