We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 080409c commit 6c5e695Copy full SHA for 6c5e695
1 file changed
.github/workflows/gradle.yml
@@ -15,8 +15,12 @@ jobs:
15
uses: actions/setup-java@v1
16
with:
17
java-version: 1.8
18
- - name: Build and publish (Bintray)
+ - name: Publish (Bintray)
19
env:
20
bintrayUser: ${{ secrets.bintrayUsername }}
21
bintrayApiKey: ${{ secrets.bintrayApiKey }}
22
run: ./gradlew bintrayUpload
23
+ - name: Publish (GitHub Packages)
24
+ env:
25
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26
+ run: ./gradlew publish
0 commit comments