Fix publish.yml
Now it will call the correct task and only fire once per release
This commit is contained in:
parent
4e070027c4
commit
3fdc96d6a5
|
@ -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 }}
|
||||
|
|
Loading…
Reference in New Issue