Fix publish.yml

Now it will call the correct task and only fire once per release
This commit is contained in:
Theo Kanning 2020-10-05 18:35:44 -05:00
parent 4e070027c4
commit 3fdc96d6a5
1 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@ name: Publish Artifacts
on:
release:
types: [published, created, edited]
types: [published]
jobs:
build:
@ -17,8 +17,8 @@ jobs:
java-version: 1.8
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew app:bintrayUpload client:bintrayUpload
- name: Publish Artifacts
run: ./gradlew api:bintrayUpload client:bintrayUpload
env:
RELEASE_VERSION : ${{ github.github_ref }}
BINTRAY_USER : ${{ secrets.BINTRAY_USER }}