Skip to content

Commit 6c5e695

Browse files
authored
Re-implementing GitHub Packages
1 parent 080409c commit 6c5e695

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/gradle.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,12 @@ jobs:
1515
uses: actions/setup-java@v1
1616
with:
1717
java-version: 1.8
18-
- name: Build and publish (Bintray)
18+
- name: Publish (Bintray)
1919
env:
2020
bintrayUser: ${{ secrets.bintrayUsername }}
2121
bintrayApiKey: ${{ secrets.bintrayApiKey }}
2222
run: ./gradlew bintrayUpload
23+
- name: Publish (GitHub Packages)
24+
env:
25+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26+
run: ./gradlew publish

0 commit comments

Comments
 (0)