diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 3b4a9f3..1a6b7a9 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -47,6 +47,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create-release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps - asset_path: build/libs/chaos-kraken-0.0.1-SNAPSHOT.jar + asset_path: ./build/libs/chaos-kraken-0.0.1-SNAPSHOT.jar asset_name: chaos-kraken.jar asset_content_type: application/jar diff --git a/build.gradle.kts b/build.gradle.kts index 1981772..d75cc98 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -73,13 +73,14 @@ publishing { } repositories { - maven { - name = "GitHubPackages" - url = uri("https://maven.pkg.github.com/autotraderuk/chaos-kraken") - credentials { - username = System.getenv("GITHUB_ACTOR") - password = System.getenv("GITHUB_TOKEN") - } - } +// maven { +// name = "GitHubPackages" +// url = uri("https://maven.pkg.github.com/autotraderuk/chaos-kraken") +// credentials { +// username = System.getenv("GITHUB_ACTOR") +// password = System.getenv("GITHUB_TOKEN") +// } +// } + mavenLocal() } }