Skip to content

Commit f62ebf2

Browse files
authoredOct 3, 2019
Update gradle.yml
1 parent d050904 commit f62ebf2

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
 

‎.github/workflows/gradle.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Java CI
2+
3+
on:
4+
release:
5+
branches:
6+
- master
7+
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v1
16+
- name: Set up JDK 1.8
17+
uses: actions/setup-java@v1
18+
with:
19+
java-version: 1.8
20+
- name: Build with Gradle
21+
env:
22+
bintrayUser: ${{ secrets.bintrayUsername }}
23+
bintrayApiKey: ${{ secrets.bintrayApiKey }}
24+
run: ./gradlew bintrayUpload

0 commit comments

Comments
 (0)