From 36a04c97a5f16563bdd8914d0f2bbe0af6ddd73c Mon Sep 17 00:00:00 2001 From: hpratt Date: Sat, 20 May 2023 12:15:39 -0400 Subject: [PATCH] skip bintray publish --- .github/workflows/mavenpublish.yml | 9 --------- build.gradle.kts | 2 +- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/mavenpublish.yml b/.github/workflows/mavenpublish.yml index c8e83be..2a3c217 100644 --- a/.github/workflows/mavenpublish.yml +++ b/.github/workflows/mavenpublish.yml @@ -20,9 +20,6 @@ jobs: java-version: 1.8 server-id: github # Value of the distributionManagement/repository/id field of the pom.xml settings-path: ${{ github.workspace }} # location for the settings.xml file - - - name: Test - run: scripts/test.sh - name: Build run: scripts/build.sh @@ -31,9 +28,3 @@ jobs: run: ./gradlew publish env: GITHUB_TOKEN: ${{ github.token }} - - - name: Bintray Publish - run: scripts/publish.sh - env: - BINTRAY_USER: ${{ secrets.BINTRAY_USER }} - BINTRAY_KEY: ${{ secrets.BINTRAY_KEY }} diff --git a/build.gradle.kts b/build.gradle.kts index 4a06b3e..b7a83b9 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -13,7 +13,7 @@ plugins { } group = "io.krews" -version = "0.14.0" +version = "0.14.1" repositories { maven { setUrl("https://dl.bintray.com/kotlin/kotlin-eap") }