You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
606 B
20 lines
606 B
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions
|
|
name: Deploy
|
|
on:
|
|
release:
|
|
types: [published]
|
|
jobs:
|
|
BINTRAY_UPLOAD:
|
|
name: Bintray Upload
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
BINTRAY_USER: ${{ secrets.BINTRAY_USER }}
|
|
BINTRAY_KEY: ${{ secrets.BINTRAY_KEY }}
|
|
BINTRAY_REPO: ${{ secrets.BINTRAY_REPO }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 1.8
|
|
- name: Perform bintray upload
|
|
run: ./gradlew cameraview:publishToBintray
|
|
|