From 55edd61e4a5b12afcc327578dc009267a9e083a2 Mon Sep 17 00:00:00 2001 From: Edwin Jakobs Date: Mon, 27 Apr 2020 20:04:59 +0200 Subject: [PATCH] Add release-to-bintray workflow --- .github/workflows/release-to-bintray.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/release-to-bintray.yml diff --git a/.github/workflows/release-to-bintray.yml b/.github/workflows/release-to-bintray.yml new file mode 100644 index 00000000..6a290145 --- /dev/null +++ b/.github/workflows/release-to-bintray.yml @@ -0,0 +1,16 @@ +name: Release to Bintray +on: + push: + tags: + - v[0-9].[0-9]+.[0-9]+ + - v[0-9].[0-9]+.[0-9]+-rc.[0-9]+ +jobs: + build: + runs-on: ubuntu-18.04 + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-java@v1 + with: + java-version: 8 + - name: Build and release to Bintray + run: ./gradlew -Prelease.useLastTag=true candidate publishNebulaPublicationToBintrayRepository --info \ No newline at end of file