We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f13e64a commit 97e9f33Copy full SHA for 97e9f33
1 file changed
.github/workflows/gradle.yml
@@ -5,21 +5,19 @@ on:
5
types: [published]
6
branches:
7
- master
8
-
9
10
jobs:
11
- build:
12
+ publish:
13
runs-on: ubuntu-latest
14
15
steps:
16
- uses: actions/checkout@v1
17
- name: Set up JDK 1.8
18
uses: actions/setup-java@v1
19
with:
20
java-version: 1.8
21
- - name: Build with Gradle
+ - name: Build and publish
22
env:
23
bintrayUser: ${{ secrets.bintrayUsername }}
24
bintrayApiKey: ${{ secrets.bintrayApiKey }}
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25
run: ./gradlew bintrayUpload
0 commit comments