We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d502ffa commit ac84b35Copy full SHA for ac84b35
.github/workflows/gradle.yml
@@ -1,4 +1,4 @@
1
-name: Bintray Upload-task
+name: Publication task
2
3
on:
4
release:
@@ -15,9 +15,12 @@ jobs:
15
uses: actions/setup-java@v1
16
with:
17
java-version: 1.8
18
- - name: Build and publish
+ - name: Build and publish (Bintray)
19
env:
20
bintrayUser: ${{ secrets.bintrayUsername }}
21
bintrayApiKey: ${{ secrets.bintrayApiKey }}
22
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23
run: ./gradlew bintrayUpload
+ - name: Build and publish (GitHub)
24
+ env:
25
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26
+ run: ./gradlew publish
0 commit comments