From 4c12adb89dc3fa941f497ee0b242905a7454cfb5 Mon Sep 17 00:00:00 2001 From: Adam Jordens Date: Fri, 15 Jan 2021 22:08:29 -0800 Subject: [PATCH] chore(build): Stop publishing debians on release builds --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a75638a95..af5cbd24f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,7 +40,7 @@ jobs: BINTRAY_API_KEY: ${{ secrets.BINTRAY_API_KEY }} RELEASE_VERSION: ${{ steps.release_info.outputs.RELEASE_VERSION }} run: | - ./gradlew --info -Pversion="${RELEASE_VERSION}" -PbintrayUser="${BINTRAY_USER}" -PbintrayKey="${BINTRAY_API_KEY}" publish + ./gradlew --info -Pversion="${RELEASE_VERSION}" -PbintrayUser="${BINTRAY_USER}" -PbintrayKey="${BINTRAY_API_KEY}" -PbintrayPublishDebEnabled=false publish - name: Create release if: steps.release_info.outputs.SKIP_RELEASE == 'false' uses: actions/create-release@v1