Skip to content

Commit a30e4e5

Browse files
authored
testing GitHub Actions
1 parent b8936ca commit a30e4e5

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/gradle.yml

Lines changed: 24 additions & 0 deletions
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.bintrayUser }}
23+
bintrayApiKey: ${{ secrets.bintrayApiKey }}
24+
run: ./gradlew bintrayUpload

0 commit comments

Comments
 (0)