Publish to bintray

This commit is contained in:
shedaniel
2020-11-07 00:37:41 +08:00
parent 99090b2796
commit 6c91c919d1
9 changed files with 99 additions and 7 deletions

1
.github/FUNDING.yml vendored Normal file
View File

@@ -0,0 +1 @@
patreon: shedaniel

19
.github/workflows/publish.yml vendored Normal file
View File

@@ -0,0 +1,19 @@
name: Java CI
on:
[push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Upload to Bintray
run: ./gradlew bintrayUpload --stacktrace
env:
BINTRAY_USER: shedaniel
BINTRAY_KEY: ${{ secrets.BINTRAY_KEY }}