Skip to content

Commit 97e9f33

Browse files
authored
Implement GitHub packages.
1 parent f13e64a commit 97e9f33

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/gradle.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,19 @@ on:
55
types: [published]
66
branches:
77
- master
8-
98

109
jobs:
11-
build:
12-
10+
publish:
1311
runs-on: ubuntu-latest
14-
1512
steps:
1613
- uses: actions/checkout@v1
1714
- name: Set up JDK 1.8
1815
uses: actions/setup-java@v1
1916
with:
2017
java-version: 1.8
21-
- name: Build with Gradle
18+
- name: Build and publish
2219
env:
2320
bintrayUser: ${{ secrets.bintrayUsername }}
2421
bintrayApiKey: ${{ secrets.bintrayApiKey }}
22+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2523
run: ./gradlew bintrayUpload

0 commit comments

Comments
 (0)